Skip to content
Snippets Groups Projects
Commit 8796cd0d authored by Nicolas Pomepuy's avatar Nicolas Pomepuy Committed by Geoffrey Métais
Browse files

Prevent beta notice to be displayed on TV

parent 06adb0f7
No related branches found
No related tags found
1 merge request!204Crash sender
......@@ -79,7 +79,7 @@ class StartActivity : FragmentActivity() {
if (AndroidUtil.isNougatOrLater) UiTools.setLocale(this)
try {
if (AppUtils.isBeta(this) && !Settings.getInstance(this).getBoolean(BETA_WELCOME, false)) {
if (!Settings.showTvUi && AppUtils.isBeta(this) && !Settings.getInstance(this).getBoolean(BETA_WELCOME, false)) {
val intent = Intent(this, BetaWelcomeActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
startActivityForResult(intent, SEND_CRASH_RESULT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment