diff options
Diffstat (limited to 'sample_updater/AndroidManifest.xml')
-rw-r--r-- | sample_updater/AndroidManifest.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/sample_updater/AndroidManifest.xml b/sample_updater/AndroidManifest.xml index ccee107bb..66414b5d3 100644 --- a/sample_updater/AndroidManifest.xml +++ b/sample_updater/AndroidManifest.xml @@ -14,8 +14,18 @@ limitations under the License. --> -<manifest - xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools" - package="com.android.update"> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.android.update"> + + <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> + </manifest> + |