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 | |
| 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"></uses-feature> |
| 10 | <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="17" /> |
| 11 | |
| 12 | <uses-permission android:name="android.permission.CAMERA"></uses-permission> |
| 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" /> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 16 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 17 | |
| 18 | <application android:label="@string/app_name" |
| 19 | android:icon="@drawable/ic_launcher" |
fischman@webrtc.org | 540acde | 2014-02-13 03:56:14 +0000 | [diff] [blame] | 20 | android:debuggable="true" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 21 | android:allowBackup="false"> |
| 22 | <activity android:name="AppRTCDemoActivity" |
| 23 | android:label="@string/app_name" |
fischman@webrtc.org | 9512719 | 2014-06-06 18:40:44 +0000 | [diff] [blame^] | 24 | android:screenOrientation="fullUser" |
| 25 | android:configChanges="orientation|screenSize" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 26 | android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> |
| 27 | <intent-filter> |
| 28 | <action android:name="android.intent.action.MAIN" /> |
| 29 | <category android:name="android.intent.category.LAUNCHER" /> |
| 30 | </intent-filter> |
| 31 | |
| 32 | <intent-filter> |
| 33 | <action android:name="android.intent.action.VIEW" /> |
| 34 | <category android:name="android.intent.category.DEFAULT" /> |
| 35 | <category android:name="android.intent.category.BROWSABLE" /> |
| 36 | <data android:scheme="https" android:host="apprtc.appspot.com" /> |
| 37 | <data android:scheme="http" android:host="apprtc.appspot.com" /> |
| 38 | </intent-filter> |
| 39 | </activity> |
| 40 | </application> |
| 41 | </manifest> |