diff options
author | Adam Lesinski <adamlesinski@google.com> | 2014-08-21 12:23:36 -0700 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2014-08-21 12:23:36 -0700 |
commit | 269d2d4f698be1d8dafa261d68a807c11e98f9e6 (patch) | |
tree | bf877fc65860f4a109a063d51e25de6d7d166f76 /tests | |
parent | ebc3e4cbf14f62a2134aded9068e147ea8cbc23b (diff) | |
download | frameworks_base-269d2d4f698be1d8dafa261d68a807c11e98f9e6.zip frameworks_base-269d2d4f698be1d8dafa261d68a807c11e98f9e6.tar.gz frameworks_base-269d2d4f698be1d8dafa261d68a807c11e98f9e6.tar.bz2 |
Update Split example with application icon
Play console wants the icon in the <application> tag
Change-Id: I83f8e5488ad853e548ba7aba6e32b14602a24ad3
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Split/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Split/AndroidManifest.xml b/tests/Split/AndroidManifest.xml index d5552de..0de8344 100644 --- a/tests/Split/AndroidManifest.xml +++ b/tests/Split/AndroidManifest.xml @@ -16,9 +16,9 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.example.split"> - <application android:label="@string/app_title"> - <activity android:name="ActivityMain" + <application android:label="@string/app_title" android:icon="@mipmap/ic_app"> + <activity android:name="ActivityMain"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> |