Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: libadblockplus-android-tests/AndroidManifest.xml

Issue 29344967: Issue 4031 - Implement tests for libadblockplus-android (Closed)
Left Patch Set: With fixed version Created Sept. 8, 2016, 1:53 p.m.
Right Patch Set: fix typo ".. file[s]" Created Sept. 15, 2016, 10:44 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « README.md ('k') | libadblockplus-android-tests/ant.properties » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 android:versionCode="1" 4 android:versionCode="1"
5 android:versionName="1.0" > 5 android:versionName="1.0" >
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="9" 8 android:minSdkVersion="9"
9 android:targetSdkVersion="16" /> 9 android:targetSdkVersion="16" />
10 10
11 <uses-permission android:name="android.permission.INTERNET" /> 11 <uses-permission android:name="android.permission.INTERNET" />
12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
13 13
14 <uses-feature 14 <uses-feature
15 android:name="android.hardware.touchscreen" 15 android:name="android.hardware.touchscreen"
16 android:required="false" /> 16 android:required="false" />
17 17
18 <application 18 <application
19 android:allowBackup="true" 19 android:allowBackup="true"
20 android:label="AdBlockPlus JNI binding library tests"> 20 android:label="AdblockPlus JNI binding library tests">
Felix Dahlke 2016/09/12 13:52:13 Nit: The "B" in Adblock Plus shouldn't be capitali
anton 2016/09/13 05:49:08 Acknowledged.
21 21
22 <!-- We add an application tag here just so that we can indicate that 22 <!-- We add an application tag here just so that we can indicate that
23 this package needs to link against the android.test library, 23 this package needs to link against the android.test library,
24 which is needed when building test cases. --> 24 which is needed when building test cases. -->
25 <uses-library android:name="android.test.runner" /> 25 <uses-library android:name="android.test.runner" />
26 26
27 </application> 27 </application>
28 28
29 <!-- 29 <!--
30 This declares that this application uses the instrumentation test runner tar geting 30 This declares that this application uses the instrumentation test runner tar geting
31 the package of org.adblockplus.libadblockplus. To run the tests use the com mand: 31 the package of org.adblockplus.libadblockplus. To run the tests use the com mand:
32 "adb shell am instrument -w org.adblockplus.libadblockplus.tests/android.tes t.InstrumentationTestRunner" 32 "adb shell am instrument -w org.adblockplus.libadblockplus.tests/android.tes t.InstrumentationTestRunner"
33 --> 33 -->
34 <instrumentation android:name="android.test.InstrumentationTestRunner" 34 <instrumentation android:name="android.test.InstrumentationTestRunner"
35 android:targetPackage="org.adblockplus.libadblockplus.tests " 35 android:targetPackage="org.adblockplus.libadblockplus.tests "
36 android:label="Tests for org.adblockplus.libadblockplus"/> 36 android:label="Tests for org.adblockplus.libadblockplus"/>
37 37
38 </manifest> 38 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld