I am trying to display some text that can contain emojis that were created on an iOS version of the app. When we render these characters on Android I see [x] next to the emoji.
Is there a way to extend the Android TextView so that skin tone characters are ignored when rendering textviews.
I've tried creating a regex to replace them with empty characters but Android Studio complains that the regex isn't valid because the hex character syntax is not supported and it looks like other escape characters are also stripped out
replaceAll("[\\x{1f3fb}-\\x{1f3ff}]", "")