OSDN Git Service

Merge "Fix collect_sources_for_sdk to collect dalvik core lib sources"
[android-x86/sdk.git] / eclipse / plugins / com.android.ide.eclipse.tests / unittests / com / android / ide / eclipse / testdata / AndroidManifest-instrumentation.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="com.android.AndroidProject.tests">
4
5     <!--
6     This declares that this app uses the instrumentation test runner targeting
7     the package of com.android.samples.  To run the tests use the command:
8     "adb shell am instrument -w com.android.samples.tests/android.test.InstrumentationTestRunner"
9     -->
10     <instrumentation android:name="android.test.InstrumentationTestRunner"
11                      android:targetPackage="com.android.AndroidProject"
12                      android:label="Sample test for deployment."/>
13
14     <application>
15         <uses-library android:name="android.test.runner" />
16     </application>
17
18 </manifest>