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

Unified Diff: libadblockplus-android-tests/AndroidManifest.xml

Issue 29344967: Issue 4031 - Implement tests for libadblockplus-android (Closed)
Patch Set: With fixed version Created Sept. 8, 2016, 1:53 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android-tests/AndroidManifest.xml
diff --git a/libadblockplus-android-tests/AndroidManifest.xml b/libadblockplus-android-tests/AndroidManifest.xml
new file mode 100755
index 0000000000000000000000000000000000000000..ea8be969eb484fa6c1401a22e4c0956327633ebb
--- /dev/null
+++ b/libadblockplus-android-tests/AndroidManifest.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.adblockplus.libadblockplus.tests"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="9"
+ android:targetSdkVersion="16" />
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+
+ <uses-feature
+ android:name="android.hardware.touchscreen"
+ android:required="false" />
+
+ <application
+ android:allowBackup="true"
+ 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.
+
+ <!-- We add an application tag here just so that we can indicate that
+ this package needs to link against the android.test library,
+ which is needed when building test cases. -->
+ <uses-library android:name="android.test.runner" />
+
+ </application>
+
+ <!--
+ This declares that this application uses the instrumentation test runner targeting
+ the package of org.adblockplus.libadblockplus. To run the tests use the command:
+ "adb shell am instrument -w org.adblockplus.libadblockplus.tests/android.test.InstrumentationTestRunner"
+ -->
+ <instrumentation android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="org.adblockplus.libadblockplus.tests"
+ android:label="Tests for org.adblockplus.libadblockplus"/>
+
+</manifest>

Powered by Google App Engine
This is Rietveld