aboutsummaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorChristian Schneppe <christian.schneppe@pix-art.de>2019-09-23 20:50:35 +0200
committerChristian Schneppe <christian.schneppe@pix-art.de>2019-09-23 20:50:35 +0200
commit443925d2e22fc4ca8b74167e01be3dbd2a84cc75 (patch)
treec19a2ece3cfbc996be3e8cb11b45cc8837f53275 /src/main
parent104c02dc33de44791e4c6f3c869273685e400a4b (diff)
correct file locations for EmojiService
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/de/pixart/messenger/services/EmojiService.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/main/java/de/pixart/messenger/services/EmojiService.java b/src/main/java/de/pixart/messenger/services/EmojiService.java
deleted file mode 100644
index f76cf5a4b..000000000
--- a/src/main/java/de/pixart/messenger/services/EmojiService.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package de.pixart.messenger.services;
-
-import android.content.Context;
-import android.os.Build;
-
-import androidx.emoji.bundled.BundledEmojiCompatConfig;
-import androidx.emoji.text.EmojiCompat;
-
-public class EmojiService {
-
- private final Context context;
-
- public EmojiService(Context context) {
- this.context = context;
- }
-
- public void init(boolean useBundledEmoji) {
- BundledEmojiCompatConfig config = new BundledEmojiCompatConfig(context);
- //On recent Androids we assume to have the latest emojis
- //there are some annoying bugs with emoji compat that make it a safer choice not to use it when possible
- // a) the text preview has annoying glitches when the cut of text contains emojis (the emoji will be half visible)
- // b) can trigger a hardware rendering bug https://issuetracker.google.com/issues/67102093
- config.setReplaceAll(useBundledEmoji && Build.VERSION.SDK_INT < Build.VERSION_CODES.O);
- EmojiCompat.init(config);
- }
-} \ No newline at end of file