summaryrefslogtreecommitdiffstats
path: root/sample_updater/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sample_updater/AndroidManifest.xml')
-rw-r--r--sample_updater/AndroidManifest.xml27
1 files changed, 16 insertions, 11 deletions
diff --git a/sample_updater/AndroidManifest.xml b/sample_updater/AndroidManifest.xml
index 66414b5d3..5bbb21c84 100644
--- a/sample_updater/AndroidManifest.xml
+++ b/sample_updater/AndroidManifest.xml
@@ -15,17 +15,22 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.update">
+ package="com.example.android.systemupdatersample">
- <application android:label="Sample Updater">
- <activity android:name=".ui.SystemUpdateActivity"
- android:label="Sample Updater">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
+ <uses-sdk android:minSdkVersion="27" android:targetSdkVersion="27" />
-</manifest>
+ <application
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:roundIcon="@mipmap/ic_launcher_round">
+ <activity
+ android:name=".ui.MainActivity"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>