| 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.adblockplus.libadblockplus.tests"> | |
| 4 | |
| 5 <uses-sdk | |
| 6 android:minSdkVersion="9" | |
| 7 android:targetSdkVersion="16" /> | |
| 8 | |
| 9 <uses-permission android:name="android.permission.INTERNET" /> | |
| 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
| 11 | |
| 12 <uses-feature | |
| 13 android:name="android.hardware.touchscreen" | |
| 14 android:required="false" /> | |
| 15 | |
| 16 <application | |
| 17 android:allowBackup="true" | |
| 18 android:label="AdblockPlus JNI binding library tests"> | |
| 19 | |
| 20 <!-- We add an application tag here just so that we can indicate that | |
| 21 this package needs to link against the android.test library, | |
| 22 which is needed when building test cases. --> | |
| 23 <uses-library android:name="android.test.runner" /> | |
| 24 | |
| 25 </application> | |
| 26 | |
| 27 <!-- | |
| 28 This declares that this application uses the instrumentation test runner tar
geting | |
| 29 the package of org.adblockplus.libadblockplus. To run the tests use the com
mand: | |
| 30 "adb shell am instrument -w org.adblockplus.libadblockplus.tests/android.tes
t.InstrumentationTestRunner" | |
| 31 --> | |
| 32 <instrumentation android:name="android.test.InstrumentationTestRunner" | |
| 33 android:targetPackage="org.adblockplus.libadblockplus.tests
" | |
| 34 android:label="Tests for org.adblockplus.libadblockplus"/> | |
| 35 | |
| 36 </manifest> | |
| OLD | NEW |