You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
XML
36 lines
1.4 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.rizze.pipuzzle"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/app_icon"
|
|
android:usesCleartextTraffic="true">
|
|
|
|
<!-- Unity activity that supports Firebase messaging -->
|
|
<activity android:name="com.google.firebase.MessagingUnityPlayerActivity"
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
|
|
</activity>
|
|
|
|
<!-- Message forwarding service used by Firebase Unity plugin -->
|
|
<service
|
|
android:name="com.google.firebase.messaging.MessageForwardingService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
android:exported="true" />
|
|
|
|
<!-- Optional: Enables automatic init of FCM -->
|
|
<meta-data
|
|
android:name="firebase_messaging_auto_init_enabled"
|
|
android:value="true" />
|
|
|
|
</application>
|
|
</manifest>
|