• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Manifest for ATSL integration tests
4-->
5<manifest xmlns:android="http://schemas.android.com/apk/res/android"
6    package="org.robolectric.integration.axt">
7
8    <uses-permission android:name="android.permission.READ_CONTACTS"/>
9
10    <application>
11        <activity android:name="org.robolectric.integrationtests.axt.EspressoActivity"
12                  android:label="Activity Label"
13                  android:exported="true" />
14        <activity android:name="org.robolectric.integrationtests.axt.EspressoScrollingActivity"
15            android:exported="true" />
16        <activity android:name="org.robolectric.integrationtests.axt.ActivityWithPlatformMenu"
17            android:exported="true">
18        </activity>
19        <activity android:name="org.robolectric.integrationtests.axt.ActivityWithAppCompatMenu"
20            android:exported="true"
21            android:theme="@style/Theme.AppCompat" />
22        <activity android:name="org.robolectric.integrationtests.axt.AppCompatActivityWithToolbarMenu"
23            android:exported="true"
24            android:theme="@style/Theme.AppCompat.NoActionBar" />
25        <activity android:name="org.robolectric.integrationtests.axt.ActivityTestRuleTest$TranscriptActivity"
26            android:exported="true" />
27        <activity android:name="org.robolectric.integrationtests.axt.IntentsTest$ResultCapturingActivity"
28            android:exported="true" />
29        <activity android:name="org.robolectric.integrationtests.axt.IntentsTest$DummyActivity"
30            android:exported="true" />
31        <activity android:name="org.robolectric.integrationtests.axt.ActivityWithSwitchCompat"
32            android:exported="true"
33            android:theme="@style/Theme.AppCompat" />
34        <activity android:name="org.robolectric.integrationtests.axt.StubBrowserActivity"
35            android:exported="true">
36            <intent-filter>
37                <action android:name="android.intent.action.VIEW" />
38                <category android:name="android.intent.category.DEFAULT" />
39                <category android:name="android.intent.category.BROWSABLE" />
40                <data android:scheme="http" />
41                <data android:scheme="https" />
42            </intent-filter>
43        </activity>
44
45    </application>
46</manifest>
47