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