| OLD | NEW |
| (Empty) |
| 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" /> | |
| 10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | |
| 11 | |
| 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"/> | |
| 17 | |
| 18 <application android:label="@string/app_name" | |
| 19 android:icon="@drawable/ic_launcher" | |
| 20 android:allowBackup="false"> | |
| 21 | |
| 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> | |
| 28 | |
| 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> | |
| 37 | |
| 38 <activity android:name="SettingsActivity" | |
| 39 android:label="@string/settings_name"> | |
| 40 </activity> | |
| 41 | |
| 42 <activity android:name="CallActivity" | |
| 43 android:label="@string/app_name" | |
| 44 android:screenOrientation="fullUser" | |
| 45 android:configChanges="orientation|screenSize" | |
| 46 android:theme="@style/CallActivityTheme"> | |
| 47 </activity> | |
| 48 </application> | |
| 49 </manifest> | |
| OLD | NEW |