blob: 4b444843892331439a518d5dc165713e0d8ab82b [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>
Zhomart Mukhamejanov0dd5a832018-04-23 11:38:54 -070034 <service android:name=".services.PrepareStreamingService"/>
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070035 </application>
Jiachen Zhaof39362e2018-03-30 15:24:26 -070036
Jiachen Zhao051b9682018-03-30 14:04:51 -070037</manifest>