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.webrtc.test" | 3 package="org.webrtc.test" |
4 android:versionCode="1" | 4 android:versionCode="1" |
5 android:versionName="1.0" > | 5 android:versionName="1.0" > |
6 <uses-feature android:name="android.hardware.camera" /> | 6 <uses-feature android:name="android.hardware.camera" /> |
7 <uses-feature android:name="android.hardware.camera.autofocus" /> | 7 <uses-feature android:name="android.hardware.camera.autofocus" /> |
8 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> | 8 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> |
9 | 9 |
10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
(...skipping 10 matching lines...) Expand all Loading... |
21 android:name="android.test.InstrumentationTestRunner" | 21 android:name="android.test.InstrumentationTestRunner" |
22 android:targetPackage="org.webrtc.test" /> | 22 android:targetPackage="org.webrtc.test" /> |
23 | 23 |
24 <application | 24 <application |
25 android:icon="@drawable/ic_launcher" | 25 android:icon="@drawable/ic_launcher" |
26 android:label="@string/app_name" > | 26 android:label="@string/app_name" > |
27 <uses-library android:name="android.test.runner" /> | 27 <uses-library android:name="android.test.runner" /> |
28 </application> | 28 </application> |
29 | 29 |
30 </manifest> | 30 </manifest> |
OLD | NEW |