I'm using an open source code to develop an Android app, using React Native. I've added a Splash Screen (SplashActivity.java) and kept it as the launcher in AndroidManifest.xml. However, everytime I run the app, the terminal shows the following output:
BUILD SUCCESSFUL in 30s
266 actionable tasks: 12 executed, 254 up-to-date
info Connecting to the development server...
info Starting the app on "MYDEVICE"...
Starting: Intent { cmp=go.sampleproject.io/.MainActivity }
The last line shows that the starting intent is MainActivity. Can anyone suggest how that can be changed to SplashActivity instead?
The code runs properly, but when I run the app through the terminal, my device does not display the SplashActivity even though I have kept it as the launcher in my AndroidManifest.xml.