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.
33 lines
1.1 KiB
XML
33 lines
1.1 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">
|
|
|
|
<!-- Standard Unity activity -->
|
|
<activity
|
|
android:name="com.unity3d.player.UnityPlayerActivity"
|
|
android:launchMode="singleTask"
|
|
android:clearTaskOnLaunch="true"
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/UnityThemeSelector">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- Optional: Firebase messaging forwarding service -->
|
|
<service
|
|
android:name="com.google.firebase.messaging.MessageForwardingService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
android:exported="false" />
|
|
</application>
|
|
</manifest>
|