1<?xml version="1.0" encoding="utf-8"?> 2<manifest 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 package="org.robolectric.integrationtests.axt"> 5 6 <application> 7 <activity 8 android:name="org.robolectric.integrationtests.axt.ActivityTestRuleTest$TranscriptActivity" 9 android:exported="true"/> 10 <activity 11 android:name="org.robolectric.integrationtests.axt.EspressoActivity" 12 android:exported="true"/> 13 <activity 14 android:name="org.robolectric.integrationtests.axt.EspressoScrollingActivity" 15 android:exported="true"/> 16 17 <activity 18 android:name="org.robolectric.integrationtests.axt.ActivityScenarioTest$LifecycleOwnerActivity" 19 android:exported="true"/> 20 <activity 21 android:name="org.robolectric.integrationtests.axt.ActivityScenarioTest$TranscriptActivity" 22 android:exported = "true"/> 23 <activity-alias 24 android:name="org.robolectric.integrationtests.axt.ActivityScenarioTestAlias" 25 android:targetActivity="org.robolectric.integrationtests.axt.ActivityScenarioTest$TranscriptActivity" /> 26 <activity 27 android:name="org.robolectric.integrationtests.axt.IntentsTest$ResultCapturingActivity" 28 android:exported = "true"/> 29 </application> 30 31 <instrumentation 32 android:name="androidx.test.runner.AndroidJUnitRunner" 33 android:targetPackage="org.robolectric.integration.axt"/> 34 35</manifest> 36