Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a3d3f43 authored by Daichi Hirono's avatar Daichi Hirono Committed by android-build-merger
Browse files

Merge "Use mipmap instead of drawable for app icon of DocumentsUI." into nyc-dev

am: b2ef9ed7

* commit 'b2ef9ed7':
  Use mipmap instead of drawable for app icon of DocumentsUI.
parents 18723b96 b2ef9ed7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@
        <activity
            android:name=".LauncherActivity"
            android:theme="@android:style/Theme.NoDisplay"
            android:icon="@drawable/ic_files_app"
            android:icon="@mipmap/ic_launcher_download"
            android:label="@string/downloads_label">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
@@ -55,7 +55,7 @@
        <activity
            android:name=".FilesActivity"
            android:theme="@style/DocumentsTheme"
            android:icon="@drawable/ic_files_app"
            android:icon="@mipmap/ic_launcher_download"
            android:label="@string/downloads_label"
            android:documentLaunchMode="intoExisting">
            <intent-filter>
+0 −5
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/ic_launcher_download"
    android:tint="?android:attr/colorControlNormal"
    android:autoMirrored="true" />
Loading