Created
January 11, 2013 03:33
-
-
Save aki017/4507728 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.unity3d.player" | |
android:installLocation="preferExternal" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<supports-screens | |
android:smallScreens="true" | |
android:normalScreens="true" | |
android:largeScreens="true" | |
android:xlargeScreens="true" | |
android:anyDensity="true"/> | |
<application | |
android:icon="@drawable/app_icon" | |
android:label="@string/app_name" | |
android:debuggable="true"> | |
<activity android:name="com.unity3d.player.UnityPlayerProxyActivity" | |
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> | |
<activity android:name="com.unity3d.player.UnityPlayerActivity" | |
android:label="@string/app_name" | |
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"> | |
</activity> | |
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity" | |
android:label="@string/app_name" | |
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"> | |
<meta-data android:name="android.app.lib_name" android:value="unity" /> | |
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" /> | |
</activity> | |
<activity android:name="com.unity3d.player.VideoPlayer" | |
android:label="@string/app_name" | |
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"> | |
</activity> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment