Emoji symbol

前端 未结 2 489
挽巷
挽巷 2021-01-03 22:56

I would like to integrate the emoji symbol

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-03 23:35

    The fix for that is: Add "--utf16" to aapt by adding

    android {
        aaptOptions {
            additionalParameters '--utf16'
        }
    }
    

    to your build.gradle file, and make sure you are not using aapt2.

    See https://issuetracker.google.com/issues/37140916

提交回复
热议问题