Disable new emoji loading by default

There are just too many bugs in androidx.emoji2
This commit is contained in:
M66B
2025-03-22 06:56:02 +01:00
parent 951b8db75a
commit 144156c63e
2 changed files with 2 additions and 2 deletions

View File

@@ -177,7 +177,7 @@ public class ApplicationEx extends Application
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
final boolean crash_reports = prefs.getBoolean("crash_reports", false);
final boolean leak_canary = prefs.getBoolean("leak_canary", BuildConfig.TEST_RELEASE);
final boolean load_emoji = prefs.getBoolean("load_emoji", true);
final boolean load_emoji = prefs.getBoolean("load_emoji", false);
prev = Thread.getDefaultUncaughtExceptionHandler();

View File

@@ -714,7 +714,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
tvGenericUserAgent.setText(WebViewEx.getUserAgent(getContext()));
swGenericUserAgent.setChecked(prefs.getBoolean("generic_ua", false));
swSafeBrowsing.setChecked(prefs.getBoolean("safe_browsing", false));
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", true));
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", false));
long disconnect_last = prefs.getLong("disconnect_last", -1);
tvDisconnectBlacklistTime.setText(disconnect_last < 0 ? null : DF.format(disconnect_last));