blob: 76c92dd05ca54d1e78d2b997f014071d8971a4f7 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.framework.multidexlegacyversionedtestapp"
android:versionCode="3"
android:versionName="3.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="18" />
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:label="MultiDexLegacyVersionedTestApp_v3">
<activity
android:name="com.android.framework.multidexlegacyversionedtestapp.MainActivity"
android:label="MultiDexLegacyVersionedTestApp_v3" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="android.test.runner" />
</application>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.android.framework.multidexlegacyversionedtestapp"
android:label="Test for MultiDexLegacyVersionedTestApp_v3" />
</manifest>