xref: /aosp_15_r20/sdk/testapps/libsTest/appTest/AndroidManifest.xml (revision 1789df15502f1991eff51ff970dce5df8404dd56)
1*1789df15SXin Li<?xml version="1.0" encoding="utf-8"?>
2*1789df15SXin Li<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3*1789df15SXin Li    package="com.android.tests.libstest.app.test"
4*1789df15SXin Li    android:versionCode="1"
5*1789df15SXin Li    android:versionName="1.0" xmlns:tools="http://schemas.android.com/tools">
6*1789df15SXin Li
7*1789df15SXin Li    <uses-sdk
8*1789df15SXin Li        android:minSdkVersion="15"
9*1789df15SXin Li        tools:ignore="UsesMinSdkAttributes" />
10*1789df15SXin Li
11*1789df15SXin Li    <!--
12*1789df15SXin Li         We add an application tag here just so that we can indicate that
13*1789df15SXin Li         this package needs to link against the android.test library,
14*1789df15SXin Li         which is needed when building test cases.
15*1789df15SXin Li    -->
16*1789df15SXin Li    <application android:label="libsTest-appTest" >
17*1789df15SXin Li        <uses-library android:name="android.test.runner" />
18*1789df15SXin Li    </application>
19*1789df15SXin Li
20*1789df15SXin Li    <!--
21*1789df15SXin Li    This declares that this app uses the instrumentation test runner targeting
22*1789df15SXin Li    the package of com.android.tests.testprojecttest.app.  To run the tests use the command:
23*1789df15SXin Li    "adb shell am instrument -w com.android.tests.testprojecttest.test/android.test.InstrumentationTestRunner"
24*1789df15SXin Li    -->
25*1789df15SXin Li    <instrumentation
26*1789df15SXin Li        android:name="android.test.InstrumentationTestRunner"
27*1789df15SXin Li        android:targetPackage="com.android.tests.libstest.app" />
28*1789df15SXin Li
29*1789df15SXin Li</manifest>