Files
vpnhotspotmod/mobile/src/main/java/be/mygod/vpnhotspot/client/Emojize.kt
2019-09-19 10:36:13 +08:00

10 lines
244 B
Kotlin

package be.mygod.vpnhotspot.client
import androidx.emoji.text.EmojiCompat
fun emojize(text: CharSequence?): CharSequence? = if (text == null) null else try {
EmojiCompat.get().process(text)
} catch (_: IllegalStateException) {
text
}