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.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="com.botvinev.max.unityplugin" |
|
android:versionCode="1" |
|
android:versionName="1.0" > |
|
|
|
<uses-sdk |
|
android:minSdkVersion="16" |
|
android:targetSdkVersion="25" /> |
|
|
|
<!-- PERMISSIONS --> |
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
|
|
|
<application |
|
android:allowBackup="true" |
|
android:theme="@style/UnityThemeSelector" |
|
android:icon="@drawable/app_icon" |
|
android:label="@string/app_name" |
|
android:debuggable="true"> |
|
<activity android:name="com.unity3d.player.UnityPlayerActivity" |
|
android:label="@string/app_name"> |
|
<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" /> |
|
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="false" /> |
|
</activity> |
|
</application> |
|
|
|
</manifest> |