You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
<!--
|
|
Android Manifest for UniAndroid Permission (2016/03/19 sanukin39)
|
|
|
|
--- if already have AndroidManifest file at Assets/Plugins/Android/ ----
|
|
Copy the activity and meta-data sentence to your AndroidManifest.xml
|
|
|
|
--- if not ---
|
|
Rename this file to AndroidManifest.xml and add permission you want to add And move the file to Assets/Plugins/Android
|
|
|
|
-->
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.company.product">
|
|
<application android:icon="@drawable/app_icon" android:label="@string/app_name">
|
|
<activity android:name="net.sanukin.OverrideUnityActivity"
|
|
android:label="@string/app_name"
|
|
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>
|
|
</activity>
|
|
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />
|
|
</application>
|
|
</manifest> |