blob: 30fd46c01bbde4f14a11076bec6de274e3a5c6c3 [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" />
glaznev@webrtc.org243eb8e2014-10-27 17:22:15 +000010 <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="19" />
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">
glaznev@webrtc.org243eb8e2014-10-27 17:22:15 +000021
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000022 <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.org28e20752013-07-10 00:45:36 +000028
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000029 <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.org243eb8e2014-10-27 17:22:15 +000037
38 <activity android:name="SettingsActivity"
39 android:label="@string/settings_name">
40 </activity>
41
glaznev@webrtc.org7bb4a982014-10-22 17:43:37 +000042 <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.org28e20752013-07-10 00:45:36 +000049</manifest>