Skip to content

Instantly share code, notes, and snippets.

@goodmorningcody
Last active August 5, 2019 06:02
Show Gist options
  • Save goodmorningcody/f4d9ff56635d2932f64d6a038eede568 to your computer and use it in GitHub Desktop.
Save goodmorningcody/f4d9ff56635d2932f64d6a038eede568 to your computer and use it in GitHub Desktop.
Example AndroidManifest XML File To Extend Android Platform in Unity
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="{Insert Your Package Name}"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="preferExternal">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application
android:theme="@style/UnityThemeSelector"
android:icon="@mipmap/app_icon"
android:label="@string/app_name">
<activity android:name="com.kakaogames.android.{Insert Your Activity Name}"
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" />
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment