Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #8720 from webgeek1234/master
Android: Fix ATV on API 28+
  • Loading branch information
JosJuice committed Apr 2, 2020
2 parents ee98042 + 85ac06a commit 4ff8559
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -44,7 +44,7 @@ private static void showMessage(Context context, SharedPreferences preferences)
sPrefsEditor.putBoolean(analyticsAsked, true);
sPrefsEditor.apply();

new AlertDialog.Builder(context)
new AlertDialog.Builder(context, R.style.Theme_AppCompat_Dialog_Alert)
.setTitle(context.getString(R.string.analytics))
.setMessage(context.getString(R.string.analytics_desc))
.setPositiveButton(R.string.yes, (dialogInterface, i) ->
Expand Down

0 comments on commit 4ff8559

Please sign in to comment.