aboutsummaryrefslogtreecommitdiff
path: root/manualtest/AndroidManifest.xml
diff options
context:
space:
mode:
authorKevin Jin <kjin@google.com>2014-10-31 11:59:08 -0700
committerKevin Jin <kjin@google.com>2014-10-31 13:49:02 -0700
commit0f3126ccd892539e3a7b1df12d0025bbeccd54eb (patch)
tree544571bd1ff1aec50ebf5b7648b1ba067ddde68b /manualtest/AndroidManifest.xml
parentfd84db8f7411744696b439dfebabb4e3498b6dee (diff)
downloaddroiddriver-0f3126ccd892539e3a7b1df12d0025bbeccd54eb.tar.gz
Revert "Revert "add manualtest for DroidDriver""
Fix the original broken commit: 1) The failure can be reproduced with "m tests" ("m" only passes). 2) It is fixed by remove the LOCAL_INSTRUMENTATION_FOR var. 3) Since the "tests" tag has this side-effect, I replaced it with "optional" in LOCAL_MODULE_TAGS, such that it won't be an implicit target. 4) Disables proguard because it does not have "tests" tag now. This reverts commit fd84db8f7411744696b439dfebabb4e3498b6dee. Change-Id: I74c6e4e85f8d50e771d2875adaf3a6db7d80dae8
Diffstat (limited to 'manualtest/AndroidManifest.xml')
-rw-r--r--manualtest/AndroidManifest.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/manualtest/AndroidManifest.xml b/manualtest/AndroidManifest.xml
new file mode 100644
index 0000000..702627e
--- /dev/null
+++ b/manualtest/AndroidManifest.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.google.android.droiddriver.manualtest"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="7"
+ android:targetSdkVersion="19" />
+
+ <instrumentation
+ android:name="com.google.android.droiddriver.runner.TestRunner"
+ android:targetPackage="com.google.android.droiddriver.manualtest" />
+
+ <application>
+ <uses-library android:name="android.test.runner" />
+ </application>
+
+</manifest>