1*d9f75844SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*d9f75844SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3*d9f75844SAndroid Build Coastguard Worker xmlns:tools="http://schemas.android.com/tools" 4*d9f75844SAndroid Build Coastguard Worker package="org.appspot.apprtc" 5*d9f75844SAndroid Build Coastguard Worker android:versionCode="1" 6*d9f75844SAndroid Build Coastguard Worker android:versionName="1.0"> 7*d9f75844SAndroid Build Coastguard Worker 8*d9f75844SAndroid Build Coastguard Worker <uses-feature android:name="android.hardware.camera" /> 9*d9f75844SAndroid Build Coastguard Worker <uses-feature android:name="android.hardware.camera.autofocus" /> 10*d9f75844SAndroid Build Coastguard Worker <uses-feature android:glEsVersion="0x00020000" android:required="true" /> 11*d9f75844SAndroid Build Coastguard Worker 12*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.CAMERA" /> 13*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> 14*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> 15*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.RECORD_AUDIO" /> 16*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.BLUETOOTH" /> 17*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.INTERNET" /> 18*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 19*d9f75844SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 20*d9f75844SAndroid Build Coastguard Worker 21*d9f75844SAndroid Build Coastguard Worker <!-- This is a test application that should always be debuggable. --> 22*d9f75844SAndroid Build Coastguard Worker <application android:label="@string/app_name" 23*d9f75844SAndroid Build Coastguard Worker android:icon="@drawable/ic_launcher" 24*d9f75844SAndroid Build Coastguard Worker android:allowBackup="false" 25*d9f75844SAndroid Build Coastguard Worker android:debuggable="true" 26*d9f75844SAndroid Build Coastguard Worker android:supportsRtl="false" 27*d9f75844SAndroid Build Coastguard Worker tools:ignore="HardcodedDebugMode"> 28*d9f75844SAndroid Build Coastguard Worker 29*d9f75844SAndroid Build Coastguard Worker <activity android:name="ConnectActivity" 30*d9f75844SAndroid Build Coastguard Worker android:label="@string/app_name" 31*d9f75844SAndroid Build Coastguard Worker android:windowSoftInputMode="adjustPan" 32*d9f75844SAndroid Build Coastguard Worker android:theme="@style/AppTheme" 33*d9f75844SAndroid Build Coastguard Worker android:exported="true"> 34*d9f75844SAndroid Build Coastguard Worker <intent-filter> 35*d9f75844SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 36*d9f75844SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 37*d9f75844SAndroid Build Coastguard Worker </intent-filter> 38*d9f75844SAndroid Build Coastguard Worker 39*d9f75844SAndroid Build Coastguard Worker <intent-filter> 40*d9f75844SAndroid Build Coastguard Worker <action android:name="android.intent.action.VIEW"/> 41*d9f75844SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 42*d9f75844SAndroid Build Coastguard Worker <category android:name="android.intent.category.BROWSABLE"/> 43*d9f75844SAndroid Build Coastguard Worker <data android:scheme="https" android:host="appr.tc"/> 44*d9f75844SAndroid Build Coastguard Worker <data android:scheme="http" android:host="appr.tc"/> 45*d9f75844SAndroid Build Coastguard Worker </intent-filter> 46*d9f75844SAndroid Build Coastguard Worker </activity> 47*d9f75844SAndroid Build Coastguard Worker 48*d9f75844SAndroid Build Coastguard Worker <activity android:name="SettingsActivity" 49*d9f75844SAndroid Build Coastguard Worker android:label="@string/settings_name" 50*d9f75844SAndroid Build Coastguard Worker android:theme="@style/AppTheme"> 51*d9f75844SAndroid Build Coastguard Worker </activity> 52*d9f75844SAndroid Build Coastguard Worker 53*d9f75844SAndroid Build Coastguard Worker <activity android:name="CallActivity" 54*d9f75844SAndroid Build Coastguard Worker android:label="@string/app_name" 55*d9f75844SAndroid Build Coastguard Worker android:screenOrientation="fullUser" 56*d9f75844SAndroid Build Coastguard Worker android:configChanges="orientation|smallestScreenSize|screenSize|screenLayout" 57*d9f75844SAndroid Build Coastguard Worker android:theme="@style/CallActivityTheme"> 58*d9f75844SAndroid Build Coastguard Worker </activity> 59*d9f75844SAndroid Build Coastguard Worker </application> 60*d9f75844SAndroid Build Coastguard Worker</manifest> 61