xref: /aosp_15_r20/external/downloader/src/example/AndroidManifest.xml (revision 2b3ec505d2eb42ded0bcac2cc02f08e691c7d592)
1*2b3ec505SXin Li<?xml version="1.0" encoding="utf-8"?>
2*2b3ec505SXin Li<!--
3*2b3ec505SXin Li Copyright 2021 The Android Open Source Project
4*2b3ec505SXin Li
5*2b3ec505SXin Li Licensed under the Apache License, Version 2.0 (the "License");
6*2b3ec505SXin Li you may not use this file except in compliance with the License.
7*2b3ec505SXin Li You may obtain a copy of the License at
8*2b3ec505SXin Li
9*2b3ec505SXin Li      http://www.apache.org/licenses/LICENSE-2.0
10*2b3ec505SXin Li
11*2b3ec505SXin Li Unless required by applicable law or agreed to in writing, software
12*2b3ec505SXin Li distributed under the License is distributed on an "AS IS" BASIS,
13*2b3ec505SXin Li WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*2b3ec505SXin Li See the License for the specific language governing permissions and
15*2b3ec505SXin Li limitations under the License.
16*2b3ec505SXin Li-->
17*2b3ec505SXin Li
18*2b3ec505SXin Li<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19*2b3ec505SXin Li    package="com.google.android.downloader.example">
20*2b3ec505SXin Li  <uses-sdk android:minSdkVersion="22" android:targetSdkVersion="26"/>
21*2b3ec505SXin Li  <uses-permission android:name="android.permission.INTERNET"/>
22*2b3ec505SXin Li  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
23*2b3ec505SXin Li  <application
24*2b3ec505SXin Li      android:label="Downloader Test App"
25*2b3ec505SXin Li      android:name=".DownloaderTestApplication">
26*2b3ec505SXin Li    <activity
27*2b3ec505SXin Li        android:name=".DownloaderTestActivity"
28*2b3ec505SXin Li        android:theme="@style/Theme.AppCompat"
29*2b3ec505SXin Li        android:label="Downloader Test App">
30*2b3ec505SXin Li      <intent-filter>
31*2b3ec505SXin Li        <action android:name="android.intent.action.MAIN" />
32*2b3ec505SXin Li        <category android:name="android.intent.category.DEFAULT" />
33*2b3ec505SXin Li        <category android:name="android.intent.category.LAUNCHER" />
34*2b3ec505SXin Li      </intent-filter>
35*2b3ec505SXin Li    </activity>
36*2b3ec505SXin Li  </application>
37*2b3ec505SXin Li</manifest>