[Solved] After adding SplashScreen, the application crashes [closed]


MainActivity.java class has not been defined in your AndroidManifest file , this could be the reason for your crash

Add this to your Manifest file

  <activity
        android:name=".MainActivity"
        android:exported="true"/>

0

solved After adding SplashScreen, the application crashes [closed]