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" |
| 3 | package="org.appspot.apprtc" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
| 6 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 7 | <uses-feature android:name="android.hardware.camera" /> |
| 8 | <uses-feature android:name="android.hardware.camera.autofocus" /> |
| 9 | <uses-feature android:glEsVersion="0x00020000" android:required="true" /> |
glaznev@webrtc.org | 243eb8e | 2014-10-27 17:22:15 +0000 | [diff] [blame^] | 10 | <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="19" /> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 11 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 12 | <uses-permission android:name="android.permission.CAMERA" /> |
| 13 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 14 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| 15 | <uses-permission android:name="android.permission.INTERNET" /> |
| 16 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 17 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 18 | <application android:label="@string/app_name" |
| 19 | android:icon="@drawable/ic_launcher" |
| 20 | android:allowBackup="false"> |
glaznev@webrtc.org | 243eb8e | 2014-10-27 17:22:15 +0000 | [diff] [blame^] | 21 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 22 | <activity android:name="ConnectActivity" |
| 23 | android:label="@string/app_name"> |
| 24 | <intent-filter> |
| 25 | <action android:name="android.intent.action.MAIN"/> |
| 26 | <category android:name="android.intent.category.LAUNCHER"/> |
| 27 | </intent-filter> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 28 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 29 | <intent-filter> |
| 30 | <action android:name="android.intent.action.VIEW"/> |
| 31 | <category android:name="android.intent.category.DEFAULT"/> |
| 32 | <category android:name="android.intent.category.BROWSABLE"/> |
| 33 | <data android:scheme="https" android:host="apprtc.appspot.com"/> |
| 34 | <data android:scheme="http" android:host="apprtc.appspot.com"/> |
| 35 | </intent-filter> |
| 36 | </activity> |
glaznev@webrtc.org | 243eb8e | 2014-10-27 17:22:15 +0000 | [diff] [blame^] | 37 | |
| 38 | <activity android:name="SettingsActivity" |
| 39 | android:label="@string/settings_name"> |
| 40 | </activity> |
| 41 | |
glaznev@webrtc.org | 7bb4a98 | 2014-10-22 17:43:37 +0000 | [diff] [blame] | 42 | <activity android:name="AppRTCDemoActivity" |
| 43 | android:label="@string/app_name" |
| 44 | android:screenOrientation="fullUser" |
| 45 | android:configChanges="orientation|screenSize" |
| 46 | android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> |
| 47 | </activity> |
| 48 | </application> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 49 | </manifest> |