Android : How to update NotoColorEmoji.ttf

Post Reply
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Android : How to update NotoColorEmoji.ttf

Post by tong »

How to update NotoColorEmoji.ttf

You need root access. Emoji font can't use on Mac and Windows.

Download latest version here :
https://github.com/googlefonts/noto-emoji
https://github.com/googlefonts/noto-emoji/blob/master/fonts/NotoColorEmoji.ttf

Code: Select all

adb devices
adb pull /system/fonts/NotoColorEmoji.ttf NotoColorEmoji.ttf.old
adb push NotoColorEmoji.ttf /sdcard
adb shell
su
mount -o rw,remount /system
mv /sdcard/NotoColorEmoji.ttf /system/fonts/
Some system need to delete /system/fonts/NotoColorEmoji.ttf before copy to /system/fonts/

Code: Select all

rm /system/fonts/NotoColorEmoji.ttf 
mv /sdcard/NotoColorEmoji.ttf /system/fonts/
tong
Site Admin
Posts: 2386
Joined: Fri 01 May 2009 8:55 pm

Re: Android : How to update NotoColorEmoji.ttf

Post by tong »

List of Emoji Characters

https://unicode.org/emoji/charts-13.1/
https://unicode.org/emoji/charts-13.1/emoji-ordering.html
https://unicode.org/emoji/charts-13.1/emoji-ordering.txt
https://unicode.org/emoji/charts/full-emoji-list.html
https://unicode.org/Public/emoji/13.1/
Post Reply