[Solved] android splash screen timer plugin
I Fixed it my self this this code here: public class SplashScreen extends Activity { // Splash screen timer private static int SPLASH_TIME_OUT = 3000; private SessionManager session; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Session manager session = new SessionManager(getApplicationContext()); // Check if user is already logged in or not if (session.isLoggedIn()) { … Read more