Android-runtime: How do I remove the splash screen completely that comes by default when I create a new NativeScript project?

Created on 18 Oct 2016  路  4Comments  路  Source: NativeScript/android-runtime

I'm trying to create a new NativeScript application, and I don't want the splash screen that comes by default when I run 'tns create' command to create an application.

No, I don't want to replace the splash screen, just want to remove it, as if it were never there.
Thanks in advance :)

Most helpful comment

@theharshalpatil navigate to app/App_Resources/Android there you'll find AndroidManifest.xml.
Delete the android:theme="@style/LaunchScreenTheme" attribute from the default activity entry, and you are good to go.
Additionally you may want to delete any assets that you are not going to use to reduce the package size.

All 4 comments

@theharshalpatil navigate to app/App_Resources/Android there you'll find AndroidManifest.xml.
Delete the android:theme="@style/LaunchScreenTheme" attribute from the default activity entry, and you are good to go.
Additionally you may want to delete any assets that you are not going to use to reduce the package size.

@Pip3r4o Thank You! That was helpful. 馃憤

Any similar solution for iOS platform?

Was this page helpful?
0 / 5 - 0 ratings