Last active
October 21, 2021 08:05
-
-
Save marchbold/a061e872c1a5797232dafcf6a49249e7 to your computer and use it in GitHub Desktop.
Game Circle manifest additions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30" /> | |
<application> | |
<!-- AMAZON GAME CIRCLE --> | |
<activity android:name="com.amazon.ags.html5.overlay.GameCircleUserInterface" android:theme="@style/GCOverlay" android:hardwareAccelerated="false"></activity> | |
<activity android:name="com.amazon.ags.html5.overlay.GameCircleAlertUserInterface" android:theme="@style/GCAlert" android:hardwareAccelerated="false"></activity> | |
<activity android:name="com.amazon.identity.auth.device.authorization.AuthorizationActivity" android:theme="@android:style/Theme.NoDisplay" android:allowTaskReparenting="true" android:launchMode="singleTask"> | |
<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:host="air.application.id" android:scheme="amzn" /> | |
</intent-filter> | |
</activity> | |
<receiver android:name="com.amazon.identity.auth.device.authorization.PackageIntentReceiver" android:enabled="true"> | |
<intent-filter> | |
<action android:name="android.intent.action.PACKAGE_INSTALL" /> | |
<action android:name="android.intent.action.PACKAGE_ADDED" /> | |
<data android:scheme="package" /> | |
</intent-filter> | |
</receiver> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment