henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ingemar Ådahl | 87b6ddb | 2017-07-11 11:56:15 +0200 | [diff] [blame] | 3 | xmlns:tools="http://schemas.android.com/tools" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 4 | package="org.appspot.apprtc" |
| 5 | android:versionCode="1" |
| 6 | android:versionName="1.0"> |
| 7 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 8 | <uses-feature android:name="android.hardware.camera" /> |
| 9 | <uses-feature android:name="android.hardware.camera.autofocus" /> |
| 10 | <uses-feature android:glEsVersion="0x00020000" android:required="true" /> |
Patrik Höglund | 68876f9 | 2015-11-12 17:36:48 +0100 | [diff] [blame] | 11 | <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 12 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.CAMERA" /> |
honghaiz | cec0a08 | 2016-01-15 14:49:09 -0800 | [diff] [blame] | 14 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 15 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 16 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
henrika | c3c2f31 | 2016-12-14 07:36:56 -0800 | [diff] [blame] | 17 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 18 | <uses-permission android:name="android.permission.INTERNET" /> |
| 19 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
honghaiz | 023f3ef | 2015-10-19 09:39:32 -0700 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
sakal | ccf1021 | 2016-11-09 07:37:28 -0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT" /> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 22 | |
sakal | 07a050f | 2017-02-13 05:58:27 -0800 | [diff] [blame] | 23 | <!-- This is a test application that should always be debuggable. --> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 24 | <application android:label="@string/app_name" |
| 25 | android:icon="@drawable/ic_launcher" |
henrika | 447dba9 | 2017-02-06 04:58:01 -0800 | [diff] [blame] | 26 | android:allowBackup="false" |
sakal | 07a050f | 2017-02-13 05:58:27 -0800 | [diff] [blame] | 27 | android:debuggable="true" |
Ingemar Ådahl | 87b6ddb | 2017-07-11 11:56:15 +0200 | [diff] [blame] | 28 | android:supportsRtl="false" |
| 29 | tools:ignore="HardcodedDebugMode"> |
glaznev@webrtc.org | 243eb8e | 2014-10-27 17:22:15 +0000 | [diff] [blame] | 30 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 31 | <activity android:name="ConnectActivity" |
Sami Kalliomäki | 57f95dc | 2016-05-16 16:21:28 +0200 | [diff] [blame] | 32 | android:label="@string/app_name" |
Sami Kalliomäki | 57f95dc | 2016-05-16 16:21:28 +0200 | [diff] [blame] | 33 | android:windowSoftInputMode="adjustPan"> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 34 | <intent-filter> |
| 35 | <action android:name="android.intent.action.MAIN"/> |
| 36 | <category android:name="android.intent.category.LAUNCHER"/> |
| 37 | </intent-filter> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 38 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 39 | <intent-filter> |
| 40 | <action android:name="android.intent.action.VIEW"/> |
| 41 | <category android:name="android.intent.category.DEFAULT"/> |
| 42 | <category android:name="android.intent.category.BROWSABLE"/> |
jansson | dccbc5e | 2016-04-15 07:16:12 -0700 | [diff] [blame] | 43 | <data android:scheme="https" android:host="appr.tc"/> |
| 44 | <data android:scheme="http" android:host="appr.tc"/> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 45 | </intent-filter> |
| 46 | </activity> |
glaznev@webrtc.org | 243eb8e | 2014-10-27 17:22:15 +0000 | [diff] [blame] | 47 | |
| 48 | <activity android:name="SettingsActivity" |
| 49 | android:label="@string/settings_name"> |
| 50 | </activity> |
| 51 | |
glaznev@webrtc.org | bc40324 | 2015-02-10 23:04:13 +0000 | [diff] [blame] | 52 | <activity android:name="CallActivity" |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 53 | android:label="@string/app_name" |
| 54 | android:screenOrientation="fullUser" |
sakal | fd6c94d | 2017-01-20 02:36:49 -0800 | [diff] [blame] | 55 | android:configChanges="orientation|smallestScreenSize|screenSize|screenLayout" |
glaznev@webrtc.org | bc40324 | 2015-02-10 23:04:13 +0000 | [diff] [blame] | 56 | android:theme="@style/CallActivityTheme"> |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 57 | </activity> |
| 58 | </application> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 59 | </manifest> |