blob: 7993c6f48f836f2dadcd70a1d7066202665b53d1 [file] [log] [blame]
Yohann Roussel5cd15692016-05-19 12:07:02 +02001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.framework.multidexlegacycorrupteddex"
4 android:versionCode="1"
5 android:versionName="1.0" >
6
7 <uses-sdk
8 android:minSdkVersion="18"
9 android:targetSdkVersion="18" />
10
11 <application
12 android:name="android.support.multidex.MultiDexApplication"
13 android:allowBackup="true"
14 android:label="MultiDexLegacyTestApp_corrupted">
15 <activity
16 android:name="com.android.framework.multidexlegacycorrupteddex.MainActivity"
17 android:label="MultiDexLegacyTestApp_corrupted" >
18 <intent-filter>
19 <action android:name="android.intent.action.MAIN" />
20
21 <category android:name="android.intent.category.LAUNCHER" />
22 </intent-filter>
23 </activity>
24 <uses-library android:name="android.test.runner" />
25 </application>
26
27 <instrumentation android:name="android.test.InstrumentationTestRunner"
28 android:targetPackage="com.android.framework.multidexlegacycorrupteddex"
29 android:label="Test for MultiDexLegacyTestApp_corrupted" />
30
31</manifest>