blob: 981cd8ebabe2c77d524f174226016bf65fd044ec [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
Zhomart Mukhamejanov2d9ffb62018-06-14 16:42:05 -070022 <uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
Jindonge0134fc2019-08-09 15:31:03 +080023 <uses-permission android:name="android.permission.INTERNET"/>
Zhomart Mukhamejanov2d9ffb62018-06-14 16:42:05 -070024
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070025 <application
26 android:icon="@mipmap/ic_launcher"
27 android:label="@string/app_name"
28 android:roundIcon="@mipmap/ic_launcher_round">
29 <activity
30 android:name=".ui.MainActivity"
31 android:label="@string/app_name" >
32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.LAUNCHER" />
35 </intent-filter>
36 </activity>
Zhomart Mukhamejanovbc077752018-12-14 09:36:32 -080037 <service android:name=".services.PrepareUpdateService"/>
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070038 </application>
Jiachen Zhaof39362e2018-03-30 15:24:26 -070039
Jiachen Zhao051b9682018-03-30 14:04:51 -070040</manifest>