1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.multidexlegacytestapp"
4    android:versionCode="1"
5    android:versionName="1.0" >
6
7    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18"/>
8
9    <application
10        android:name=".TestApplication"
11        android:label="multidexlegacytestapp"
12        >
13        <activity
14            android:name="com.android.multidexlegacytestapp.MainActivity"
15            android:label="multidexlegacytestapp" >
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="android.test.InstrumentationTestRunner"
26                     android:targetPackage="com.android.multidexlegacytestapp"
27                     android:label="Test for MultiDexLegacyTestApp" />
28</manifest>
29