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