// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.gesoftoa; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import com.gesoftoa.LoginActivity; import com.gesoftoa.MainActivity; import com.gesoftoa.common.DataUtils; public class LauncherActivity extends Activity { private Context mContext; public LauncherActivity() { } protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.setContentView(2130903046); this.mContext = this; (new Thread(new Runnable() { public void run() { try { Thread.sleep(3000L); Intent e = new Intent(); if(DataUtils.isLogin(LauncherActivity.this.mContext)) { e.setClass(LauncherActivity.this.mContext, MainActivity.class); } else { e.setClass(LauncherActivity.this.mContext, LoginActivity.class); } LauncherActivity.this.startActivity(e); LauncherActivity.this.finish(); } catch (InterruptedException var2) { var2.printStackTrace(); } } })).start(); } }