When starting some non-unity games, usually they immediately show their own splash screens and other stuff.
With Unity, it is usually some Android blank layout with only app title on the top, and then it proceeds to Unity splash screen. Any way to change this behavior? Because Unity player isn’t fastest thing to start, so you probably don’t want any confusing screens on startup.
You need Unity Pro to be able to change the default Unity splash screen.
You don’t know the difference between Unity splash screen and Android layouts, do you?
yaapelsinko:
When starting some non-unity games, usually they immediately show their own splash screens and other stuff.
With Unity, it is usually some Android blank layout with only app title on the top, and then it proceeds to Unity splash screen. Any way to change this behavior? Because Unity player isn’t fastest thing to start, so you probably don’t want any confusing screens on startup.
Use the following manifest as your base (for Unity 4.3+) and that should resolve your issue.
<?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:theme="@android:style/Theme.NoTitleBar"
android:debuggable="true">
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
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>
I totally misunderstood your original post, my bad.