Jiachen Zhao | 051b968 | 2018-03-30 14:04:51 -0700 | [diff] [blame] | 1 | <?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 Zhao | f39362e | 2018-03-30 15:24:26 -0700 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Zhomart Mukhamejanov | f4d280c | 2018-04-17 13:20:22 -0700 | [diff] [blame] | 18 | package="com.example.android.systemupdatersample"> |
Jiachen Zhao | f39362e | 2018-03-30 15:24:26 -0700 | [diff] [blame] | 19 | |
Zhomart Mukhamejanov | f4d280c | 2018-04-17 13:20:22 -0700 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="27" android:targetSdkVersion="27" /> |
| 21 | |
Zhomart Mukhamejanov | 2d9ffb6 | 2018-06-14 16:42:05 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" /> |
Jindong | e0134fc | 2019-08-09 15:31:03 +0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.INTERNET"/> |
Zhomart Mukhamejanov | 2d9ffb6 | 2018-06-14 16:42:05 -0700 | [diff] [blame] | 24 | |
Zhomart Mukhamejanov | f4d280c | 2018-04-17 13:20:22 -0700 | [diff] [blame] | 25 | <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 Mukhamejanov | bc07775 | 2018-12-14 09:36:32 -0800 | [diff] [blame] | 37 | <service android:name=".services.PrepareUpdateService"/> |
Zhomart Mukhamejanov | f4d280c | 2018-04-17 13:20:22 -0700 | [diff] [blame] | 38 | </application> |
Jiachen Zhao | f39362e | 2018-03-30 15:24:26 -0700 | [diff] [blame] | 39 | |
Jiachen Zhao | 051b968 | 2018-03-30 14:04:51 -0700 | [diff] [blame] | 40 | </manifest> |