2015-07-09 15:36:42 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.mtp.tests"
|
|
|
|
android:sharedUserId="android.media">
|
|
|
|
|
|
|
|
<application>
|
|
|
|
<uses-library android:name="android.test.runner" />
|
2015-08-28 15:02:46 +09:00
|
|
|
<activity android:name="com.android.mtp.TestResultActivity"
|
|
|
|
android:screenOrientation="locked"
|
|
|
|
android:launchMode="singleInstance">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-07-09 15:36:42 +09:00
|
|
|
</application>
|
|
|
|
|
2015-08-28 15:02:46 +09:00
|
|
|
<instrumentation android:name="com.android.mtp.TestResultInstrumentation"
|
2015-07-09 15:36:42 +09:00
|
|
|
android:targetPackage="com.android.mtp"
|
2015-08-28 15:47:33 +09:00
|
|
|
android:label="Tests for MtpDocumentsProvider with the UI for output." />
|
2015-07-09 15:36:42 +09:00
|
|
|
</manifest>
|