xref: /aosp_15_r20/external/grpc-grpc-java/android-interop-testing/src/main/AndroidManifest.xml (revision e07d83d3ffcef9ecfc9f7f475418ec639ff0e5fe)
1*e07d83d3SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*e07d83d3SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
3*e07d83d3SAndroid Build Coastguard Worker
4*e07d83d3SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.INTERNET" />
5*e07d83d3SAndroid Build Coastguard Worker    <!-- For UDS -->
6*e07d83d3SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
7*e07d83d3SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
8*e07d83d3SAndroid Build Coastguard Worker
9*e07d83d3SAndroid Build Coastguard Worker    <application
10*e07d83d3SAndroid Build Coastguard Worker        android:allowBackup="true"
11*e07d83d3SAndroid Build Coastguard Worker        android:icon="@mipmap/ic_launcher"
12*e07d83d3SAndroid Build Coastguard Worker        android:label="@string/app_name"
13*e07d83d3SAndroid Build Coastguard Worker        android:theme="@style/Base.V7.Theme.AppCompat.Light"
14*e07d83d3SAndroid Build Coastguard Worker        android:name="androidx.multidex.MultiDexApplication">
15*e07d83d3SAndroid Build Coastguard Worker        <activity
16*e07d83d3SAndroid Build Coastguard Worker            android:name=".TesterActivity"
17*e07d83d3SAndroid Build Coastguard Worker            android:exported="true"
18*e07d83d3SAndroid Build Coastguard Worker            android:label="@string/app_name" >
19*e07d83d3SAndroid Build Coastguard Worker            <intent-filter>
20*e07d83d3SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN" />
21*e07d83d3SAndroid Build Coastguard Worker
22*e07d83d3SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER" />
23*e07d83d3SAndroid Build Coastguard Worker            </intent-filter>
24*e07d83d3SAndroid Build Coastguard Worker        </activity>
25*e07d83d3SAndroid Build Coastguard Worker        <!-- To support tests under binder, which need Android services -->
26*e07d83d3SAndroid Build Coastguard Worker        <service android:name="io.grpc.binder.HostServices$HostService1"/>
27*e07d83d3SAndroid Build Coastguard Worker        <service android:name="io.grpc.binder.HostServices$HostService2"/>
28*e07d83d3SAndroid Build Coastguard Worker    </application>
29*e07d83d3SAndroid Build Coastguard Worker
30*e07d83d3SAndroid Build Coastguard Worker</manifest>
31