구글 글라스 한글 깨짐 문제 해결방법
구글글라스 한글 깨짐 문제 해결방법
X20버전부터 한글폰트가 사라져서 한글이 몽땅 안나오는 이슈가 생겼습니다. 커뮤니티 사이트에 이슈를 보고 했는데도 X22까지 해결 안되고 있습니다.
Young-Ho Cha님께서 이슈해결 방법을 올리셨습니다.
How to put NanumGothic.ttf on Glass.
Download NanumGothic.ttf from http://goo.gl/xdVtD2
Download rooted boot.img from https://dl.google.com/glass/xe22/boot.img (for XE22)
2-1. If you want to restore factory boot.img, also download XE22 factory image from http://dl.google.com/glass/xe22/signed-glass_1-img-1511057.zip
- Setup your PC to use android sdk and install platform tools to use adb and fastboot.
3-1. for Windows user, must install android adb usb driver
3-2. If you are linux or mac user, https://code.google.com/p/adb-fastboot-install/ will be helpful.
Turn on debug mode on your glass
Open command line shell (cmd.exe or Term.app, etc) and run these commands
// reboots the device into the bootloader
$ adb reboot-bootloader
// root your glass with rooted boot.img
$ fastboot flash boot boot.img
// reboot
$ fastboot reboot
// restarts the adbd daemon with root permissions
$ adb root
// remounts the /system partition on the device read-write
$ adb remount
// put NanumGothic.ttf on glass
$ adb push NanumGothic.ttf /system/fonts/
// reboots the device into the bootloader
$ adb reboot-bootloader
// unroot your glass with factory image. you must use boot.img in signed-glass_1-img-1511057.zip
$ fastboot flash boot boot.img
// reboot
$ fastboot reboot
- PROFIT