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 :)
@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?
Most helpful comment
@theharshalpatil navigate to
app/App_Resources/Androidthere you'll find AndroidManifest.xml.Delete the
android:theme="@style/LaunchScreenTheme"attribute from the defaultactivityentry, 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.