diff options
author | Zhomart Mukhamejanov <zhomart@google.com> | 2018-04-25 21:13:54 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-04-25 21:13:54 +0200 |
commit | 8e7cd817e37946175c1703521346e355cc156cc6 (patch) | |
tree | 63be97dbf4962b1acc937f9a0ba36abde002ef83 /sample_updater/AndroidManifest.xml | |
parent | [automerger skipped] Wipe the metadata partition when we wipe data. (diff) | |
parent | Merge "sample_updater: add non-streaming demo" (diff) | |
download | android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar.gz android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar.bz2 android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar.lz android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar.xz android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.tar.zst android_bootable_recovery-8e7cd817e37946175c1703521346e355cc156cc6.zip |
Diffstat (limited to 'sample_updater/AndroidManifest.xml')
-rw-r--r-- | sample_updater/AndroidManifest.xml | 27 |
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> |