blob: 66414b5d3138cad76d937a5d6e63ce73950a8028 [file] [log] [blame]
Jiachen Zhao051b9682018-03-30 14:04:51 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2018 The Android Open Source Project
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
Jiachen Zhaof39362e2018-03-30 15:24:26 -070017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.update">
19
20 <application android:label="Sample Updater">
21 <activity android:name=".ui.SystemUpdateActivity"
22 android:label="Sample Updater">
23 <intent-filter>
24 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter>
27 </activity>
28 </application>
29
Jiachen Zhao051b9682018-03-30 14:04:51 -070030</manifest>
Jiachen Zhaof39362e2018-03-30 15:24:26 -070031