1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.mtp.tests" 4 android:sharedUserId="android.media"> 5 6 <application> 7 <uses-library android:name="android.test.runner" /> 8 <activity android:name="com.android.mtp.TestResultActivity" 9 android:screenOrientation="locked" 10 android:launchMode="singleInstance"> 11 <intent-filter> 12 <action android:name="android.intent.action.MAIN" /> 13 <category android:name="android.intent.category.LAUNCHER" /> 14 </intent-filter> 15 </activity> 16 </application> 17 18 <instrumentation android:name="com.android.mtp.TestResultInstrumentation" 19 android:targetPackage="com.android.mtp" 20 android:label="Tests for MtpDocumentsProvider with the UI for output." /> 21</manifest> 22