blob: cdf674deb5739f37ead386173c2205f17a71cae8 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001<?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.org7bb4a982014-10-22 17:43:37 +00007 <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" />
10 <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="17" />
henrike@webrtc.org28e20752013-07-10 00:45:36 +000011
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000012 <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.org28e20752013-07-10 00:45:36 +000017
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000018 <application android:label="@string/app_name"
19 android:icon="@drawable/ic_launcher"
20 android:allowBackup="false">
21 <activity android:name="ConnectActivity"
22 android:label="@string/app_name">
23 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/>
25 <category android:name="android.intent.category.LAUNCHER"/>
26 </intent-filter>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000027
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000028 <intent-filter>
29 <action android:name="android.intent.action.VIEW"/>
30 <category android:name="android.intent.category.DEFAULT"/>
31 <category android:name="android.intent.category.BROWSABLE"/>
32 <data android:scheme="https" android:host="apprtc.appspot.com"/>
33 <data android:scheme="http" android:host="apprtc.appspot.com"/>
34 </intent-filter>
35 </activity>
36 <activity android:name="AppRTCDemoActivity"
37 android:label="@string/app_name"
38 android:screenOrientation="fullUser"
39 android:configChanges="orientation|screenSize"
40 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
41 </activity>
42 </application>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000043</manifest>