Erdenezayaa
Erdenezayaa
I found a workaround on android 12. I followed official documentation on migrating to new splash screen [here](https://developer.android.com/about/versions/12/splash-screen-migration#migrate_your_splash_screen_implementation) I changed the backgroundColor of splash screen but couldn't change the icon...
@brunomartinezciompi MainActivity.java ```java @Override protected void onCreate(Bundle savedInstanceState) { SplashScreen.show(MainActivity.this); super.onCreate(null); } ``` android/app/src/main/res/  With this configuration on Android 12 Native splash screen...