Debug startActivity

This commit is contained in:
Duy Tran Khanh 2020-12-14 14:16:13 +07:00 committed by GitHub
parent e8d9165dd4
commit 1f09b3066c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,4 +18,10 @@ public class BaseActivity extends AppCompatActivity
protected void attachBaseContext(Context base) { protected void attachBaseContext(Context base) {
super.attachBaseContext(LocaleUtils.setLocale(base)); super.attachBaseContext(LocaleUtils.setLocale(base));
} }
@Override
public void startActivity(Intent i) {
super.startActivity(i);
new Throwable("StartActivity").printStackTrace();
}
} }