| 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="14" android:targetSdkVersion="21" /> | 10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 </activity> | 40 </activity> |
| 41 | 41 |
| 42 <activity android:name="CallActivity" | 42 <activity android:name="CallActivity" |
| 43 android:label="@string/app_name" | 43 android:label="@string/app_name" |
| 44 android:screenOrientation="fullUser" | 44 android:screenOrientation="fullUser" |
| 45 android:configChanges="orientation|screenSize" | 45 android:configChanges="orientation|screenSize" |
| 46 android:theme="@style/CallActivityTheme"> | 46 android:theme="@style/CallActivityTheme"> |
| 47 </activity> | 47 </activity> |
| 48 </application> | 48 </application> |
| 49 </manifest> | 49 </manifest> |
| OLD | NEW |