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

Commit b2ef9ed7 authored by Daichi Hirono's avatar Daichi Hirono Committed by Android (Google) Code Review
Browse files

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

parents 0e3aff1a 50da0ac6
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