I got this error when start SplashScreenActivity :
Any help would be highly appreciated, Thank you
--> "onCreate code on SplashScreenActivity"
public void onCreate(@Nullable  Bundle bundle) {
        super.onCreate(bundle);
        getWindow().setFlags(1024, 1024);
        setContentView(R.layout.activity_splash_screen);
        if (!NetworkManager.isInternetConnected(getApplicationContext())) {
            this.SPLASH_DELAY = 1000;
        }
        EventsHelper.INSTANCE.addEvent(this, SplashScreenActivityKt.TAG);
        NotificationUtilKt.openPlayStoreFromNotificationClick((Activity) this);
    }
--> "onCreate code on BaseActivity"
public void onCreate(@Nullable Bundle bundle) {
        // this.job = JobKt.Job$default((Job) null, 1, (Object) null);
        super.onCreate(bundle);
        KeyboardUtilKt.hideKeyboard(this);
    }
 
    