240 lines
10 KiB
XML
240 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.cege.games.release">
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:name=".MainApplication"
|
|
android:icon="@mipmap/ic_launcher"
|
|
tools:replace="android:icon"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:extractNativeLibs="true"
|
|
android:usesCleartextTraffic="true"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
|
<!-- Tell Cocos2dxActivity the name of our .so -->
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="cocos2djs" />
|
|
<meta-data
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
android:value="true" />
|
|
<meta-data
|
|
android:name="com.facebook.sdk.ApplicationId"
|
|
android:value="@string/facebook_app_id" />
|
|
<meta-data
|
|
android:name="com.facebook.sdk.ClientToken"
|
|
android:value="@string/facebook_client_token" />
|
|
|
|
<provider
|
|
android:authorities="com.facebook.app.FacebookContentProvider1204701000119770"
|
|
android:name="com.facebook.FacebookContentProvider"
|
|
android:exported="true" />
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="com.cege.games.release.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true"
|
|
tools:replace="android:authorities">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/app_files"
|
|
tools:replace="android:resource" />
|
|
</provider>
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:screenOrientation="sensorLandscape"
|
|
android:theme="@style/CEBGThemeSelector"
|
|
android:launchMode="singleTask"
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density"
|
|
android:resizeableActivity="false"
|
|
android:hardwareAccelerated="false"
|
|
tools:replace="android:theme"
|
|
android:exported="true">
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<!-- deeplink -->
|
|
<intent-filter android:autoVerify="true">
|
|
<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:host="www.cebg.games"
|
|
android:pathPrefix="/client" />
|
|
</intent-filter>
|
|
<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="https" />
|
|
<data
|
|
android:host="www.cebg.games"
|
|
android:pathPrefix="/client" />
|
|
</intent-filter>
|
|
<intent-filter android:autoVerify="true">
|
|
<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:host="www.counterfire.games"
|
|
android:pathPrefix="/client" />
|
|
</intent-filter>
|
|
<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="https" />
|
|
<data
|
|
android:host="www.counterfire.games"
|
|
android:pathPrefix="/client" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.king.zxing.CaptureActivity"
|
|
android:theme="@style/CaptureTheme" />
|
|
<activity
|
|
android:name=".activity.WebPageActivity"
|
|
android:theme="@style/WebViewTheme" />
|
|
<activity
|
|
android:name=".activity.CustomCaptureActivity"
|
|
android:theme="@style/CaptureTheme" />
|
|
<!--
|
|
This activity declaration is merged with the version from the library manifest.
|
|
It demonstrates how an https redirect can be captured, in addition to or instead of
|
|
a custom scheme.
|
|
|
|
Generally, this should be done in conjunction with an app link declaration for Android M
|
|
and above, for additional security and an improved user experience. See:
|
|
|
|
https://developer.android.com/training/app-links/index.html
|
|
|
|
The declaration from the library can be completely replaced by adding tools:node="replace"
|
|
|
|
To the list of attributes on the activity element.
|
|
-->
|
|
<activity
|
|
android:exported="true"
|
|
android:name="net.openid.appauth.RedirectUriReceiverActivity"
|
|
tools:node="replace">
|
|
<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="com.googleusercontent.apps.53206975661-asnf3qe4bg29p8h981pgf099osvrjbme" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
<activity
|
|
android:name=".tiktokapi.TikTokEntryActivity"
|
|
android:launchMode="singleTask"
|
|
android:taskAffinity="com.cege.games.release"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name=".apple.AppleLoginActivity"
|
|
android:theme="@style/WebViewTheme" />
|
|
<activity
|
|
android:name=".apple.AppleLoginCbActivity"
|
|
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="cebg"
|
|
android:path="/apple_login_result" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="com.facebook.FacebookActivity"
|
|
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
|
android:label="@string/app_name" />
|
|
<activity
|
|
android:name="com.facebook.CustomTabActivity"
|
|
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="@string/fb_login_protocol_scheme" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name="com.youme.voiceengine.VoiceEngineService"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.youme.voiceengine.VoiceEngineService" />
|
|
<category android:name="android.intent.category.default" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
<supports-screens
|
|
android:anyDensity="true"
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:smallScreens="true"
|
|
android:xlargeScreens="true" />
|
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen.multitouch"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen.multitouch.distinct"
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
<uses-permission
|
|
android:name="android.permission.WRITE_SETTINGS"
|
|
tools:ignore="ProtectedPermissions" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission
|
|
android:name="android.permission.CAPTURE_VIDEO_OUTPUT"
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
<uses-permission
|
|
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="32" />
|
|
<uses-permission
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="29" />
|
|
|
|
<queries>
|
|
<package android:name="com.zhiliaoapp.musically" />
|
|
<package android:name="com.ss.android.ugc.trill" />
|
|
|
|
<provider android:authorities="com.facebook.katana.provider.PlatformProvider" />
|
|
<!-- allows app to access Facebook app features -->
|
|
<provider android:authorities="com.facebook.orca.provider.PlatformProvider" />
|
|
<!-- allows sharing to Messenger app -->
|
|
</queries>
|
|
</manifest> |