aboutsummaryrefslogtreecommitdiff
path: root/testapps/testProjectTest/testapp/AndroidManifest.xml
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2020-05-06 14:17:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-05-06 14:17:12 +0000
commitfc7cda06f54946e3a03ea008c1ba086d90aeef84 (patch)
treefd845444b59dfc72656b7781596e0b1a0662c4c7 /testapps/testProjectTest/testapp/AndroidManifest.xml
parent1aa104fb55f1b87494e4e2bc38e23416f486adfd (diff)
parent512ba8f80c0a2422f9e58a1401cb142db190a56c (diff)
downloadsdk-fc7cda06f54946e3a03ea008c1ba086d90aeef84.tar.gz
Merge "Revert "Remove unused project.""
Diffstat (limited to 'testapps/testProjectTest/testapp/AndroidManifest.xml')
-rw-r--r--testapps/testProjectTest/testapp/AndroidManifest.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/testapps/testProjectTest/testapp/AndroidManifest.xml b/testapps/testProjectTest/testapp/AndroidManifest.xml
new file mode 100644
index 000000000..5252972bc
--- /dev/null
+++ b/testapps/testProjectTest/testapp/AndroidManifest.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.testprojecttest.test"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk android:minSdkVersion="15" />
+
+ <!--
+ 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.
+ -->
+ <application android:label="testProjectTest-testapp">
+ <uses-library android:name="android.test.runner" />
+ </application>
+
+ <!--
+ This declares that this app uses the instrumentation test runner targeting
+ the package of com.android.tests.testprojecttest.app. To run the tests use the command:
+ "adb shell am instrument -w com.android.tests.testprojecttest.test/android.test.InstrumentationTestRunner"
+ -->
+ <instrumentation
+ android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="com.android.tests.testprojecttest.app" />
+
+</manifest> \ No newline at end of file