• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <application
5        android:theme="@style/Theme.Robolectric" android:enabled="true">
6      <activity android:name=".TestActivity" android:exported="true">
7        <intent-filter>
8            <category android:name="android.intent.category.LAUNCHER"/>
9            <action android:name="android.intent.action.MAIN"/>
10        </intent-filter>
11      </activity>
12      <activity android:name=".DisabledTestActivity" android:enabled="false" android:exported="true"/>
13      <service android:name=".TestService" android:exported="true"/>
14
15      <activity
16          android:name=".ActivityWithAnotherTheme"
17          android:theme="@style/Theme.AnotherTheme" android:exported="true"/>
18      <activity android:name=".ActivityWithoutTheme" android:exported="true"/>
19
20    </application>
21</manifest>
22