Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup of AndroidManifest Activity references. #6878

Merged
merged 1 commit into from Nov 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Manifest for ATSL integration tests
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.robolectric.integration.axt">
<uses-sdk android:targetSdkVersion="28"/>

<uses-permission android:name="android.permission.READ_CONTACTS"/>

<application>
<activity android:name="org.robolectric.integrationtests.axt.EspressoActivity"
android:label="Activity Label"
android:exported="true" />
<activity android:name="org.robolectric.integrationtests.axt.ActivityWithPlatformMenu"
android:exported="true">
</activity>
<activity android:name="org.robolectric.integrationtests.axt.ActivityWithAppCompatMenu"
android:exported="true"
android:theme="@style/Theme.AppCompat" />
<activity android:name="org.robolectric.integrationtests.axt.AppCompatActivityWithToolbarMenu"
android:exported="true"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity android:name="org.robolectric.integrationtests.axt.ActivityWithSwitchCompat"
android:exported="true"
android:theme="@style/Theme.AppCompat" />
<activity android:name="org.robolectric.integrationtests.axt.StubBrowserActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.robolectric.integrationtests.axt">

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="27"/>

<application>
<activity android:name=".EspressoActivity" android:exported="true"/>
</application>

<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="org.robolectric.integration.axt"/>

</manifest>