1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="org.robolectric.testapp"> 4 5 <application 6 android:theme="@style/Theme.Robolectric" android:enabled="true"> 7 <activity android:name=".TestActivity" android:exported="true"> 8 <intent-filter> 9 <category android:name="android.intent.category.LAUNCHER"/> 10 <action android:name="android.intent.action.MAIN"/> 11 </intent-filter> 12 </activity> 13 <activity android:name=".DisabledTestActivity" android:enabled="false" android:exported="true"/> 14 <service android:name=".TestService" android:exported="true"/> 15 16 <activity 17 android:name=".ActivityWithAnotherTheme" 18 android:theme="@style/Theme.AnotherTheme" android:exported="true"/> 19 <activity android:name=".ActivityWithoutTheme" android:exported="true"/> 20 21 </application> 22</manifest> 23