1<?xml version="1.0" encoding="utf-8"?>
2
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4     package="com.android.multidexlegacyandexception"
5     android:versionCode="1"
6     android:versionName="1.0">
7
8    <uses-sdk android:minSdkVersion="8"
9         android:targetSdkVersion="18"/>
10
11    <application android:name="com.android.multidexlegacyandexception.TestApplication"
12         android:label="multidexlegacyandexception">
13        <activity android:name="com.android.multidexlegacyandexception.MainActivity"
14             android:label="multidexlegacyandexception"
15             android:exported="true">
16            <intent-filter>
17                <action android:name="android.intent.action.MAIN"/>
18
19                <category android:name="android.intent.category.LAUNCHER"/>
20            </intent-filter>
21        </activity>
22        <uses-library android:name="android.test.runner"/>
23    </application>
24
25    <instrumentation android:name="com.android.test.runner.MultiDexTestRunner"
26         android:targetPackage="com.android.multidexlegacyandexception"
27         android:label="Test for MultiDexLegacyAndException"/>
28
29    <instrumentation android:name="com.android.multidexlegacyandexception.tests.MultiDexAndroidJUnitRunner"
30         android:targetPackage="com.android.multidexlegacyandexception"
31         android:label="Test for MultiDexLegacyAndException"/>
32
33    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
34         android:targetPackage="com.android.multidexlegacyandexception"
35         android:label="Test for MultiDexLegacyAndException"/>
36</manifest>
37