blob: 5bbb21c84f67ccc919e3a2eb93fddda35c58ba3a [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"
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070018 package="com.example.android.systemupdatersample">
Jiachen Zhaof39362e2018-03-30 15:24:26 -070019
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070020 <uses-sdk android:minSdkVersion="27" android:targetSdkVersion="27" />
21
22 <application
23 android:icon="@mipmap/ic_launcher"
24 android:label="@string/app_name"
25 android:roundIcon="@mipmap/ic_launcher_round">
26 <activity
27 android:name=".ui.MainActivity"
28 android:label="@string/app_name" >
29 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
31 <category android:name="android.intent.category.LAUNCHER" />
32 </intent-filter>
33 </activity>
34 </application>
Jiachen Zhaof39362e2018-03-30 15:24:26 -070035
Jiachen Zhao051b9682018-03-30 14:04:51 -070036</manifest>