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.adblockplus.libadblockplus.tests"> | 3 package="org.adblockplus.libadblockplus.tests"> |
4 | 4 |
5 <uses-sdk | 5 <uses-sdk |
6 android:minSdkVersion="9" | 6 android:minSdkVersion="9" |
7 android:targetSdkVersion="16" /> | 7 android:targetSdkVersion="16" /> |
8 | 8 |
9 <uses-permission android:name="android.permission.INTERNET" /> | 9 <uses-permission android:name="android.permission.INTERNET" /> |
10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
(...skipping 16 matching lines...) Expand all Loading... |
27 <!-- | 27 <!-- |
28 This declares that this application uses the instrumentation test runner tar
geting | 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: | 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" | 30 "adb shell am instrument -w org.adblockplus.libadblockplus.tests/android.tes
t.InstrumentationTestRunner" |
31 --> | 31 --> |
32 <instrumentation android:name="android.test.InstrumentationTestRunner" | 32 <instrumentation android:name="android.test.InstrumentationTestRunner" |
33 android:targetPackage="org.adblockplus.libadblockplus.tests
" | 33 android:targetPackage="org.adblockplus.libadblockplus.tests
" |
34 android:label="Tests for org.adblockplus.libadblockplus"/> | 34 android:label="Tests for org.adblockplus.libadblockplus"/> |
35 | 35 |
36 </manifest> | 36 </manifest> |
OLD | NEW |