| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="org.appspot.apprtc" | 3 package="org.appspot.apprtc" |
| 4 android:versionCode="1" | 4 android:versionCode="1" |
| 5 android:versionName="1.0"> | 5 android:versionName="1.0"> |
| 6 | 6 |
| 7 <uses-feature android:name="android.hardware.camera" /> | 7 <uses-feature android:name="android.hardware.camera" /> |
| 8 <uses-feature android:name="android.hardware.camera.autofocus" /> | 8 <uses-feature android:name="android.hardware.camera.autofocus" /> |
| 9 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> | 9 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> |
| 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> | 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 android:label="@string/app_name"> | 25 android:label="@string/app_name"> |
| 26 <intent-filter> | 26 <intent-filter> |
| 27 <action android:name="android.intent.action.MAIN"/> | 27 <action android:name="android.intent.action.MAIN"/> |
| 28 <category android:name="android.intent.category.LAUNCHER"/> | 28 <category android:name="android.intent.category.LAUNCHER"/> |
| 29 </intent-filter> | 29 </intent-filter> |
| 30 | 30 |
| 31 <intent-filter> | 31 <intent-filter> |
| 32 <action android:name="android.intent.action.VIEW"/> | 32 <action android:name="android.intent.action.VIEW"/> |
| 33 <category android:name="android.intent.category.DEFAULT"/> | 33 <category android:name="android.intent.category.DEFAULT"/> |
| 34 <category android:name="android.intent.category.BROWSABLE"/> | 34 <category android:name="android.intent.category.BROWSABLE"/> |
| 35 <data android:scheme="https" android:host="apprtc.appspot.com"/> | 35 <data android:scheme="https" android:host="appr.tc"/> |
| 36 <data android:scheme="http" android:host="apprtc.appspot.com"/> | 36 <data android:scheme="http" android:host="appr.tc"/> |
| 37 </intent-filter> | 37 </intent-filter> |
| 38 </activity> | 38 </activity> |
| 39 | 39 |
| 40 <activity android:name="SettingsActivity" | 40 <activity android:name="SettingsActivity" |
| 41 android:label="@string/settings_name"> | 41 android:label="@string/settings_name"> |
| 42 </activity> | 42 </activity> |
| 43 | 43 |
| 44 <activity android:name="CallActivity" | 44 <activity android:name="CallActivity" |
| 45 android:label="@string/app_name" | 45 android:label="@string/app_name" |
| 46 android:screenOrientation="fullUser" | 46 android:screenOrientation="fullUser" |
| 47 android:configChanges="orientation|screenSize" | 47 android:configChanges="orientation|screenSize" |
| 48 android:theme="@style/CallActivityTheme"> | 48 android:theme="@style/CallActivityTheme"> |
| 49 </activity> | 49 </activity> |
| 50 </application> | 50 </application> |
| 51 </manifest> | 51 </manifest> |
| OLD | NEW |