Android Studio - “Unmappable character for encoding UTF-8”

后端 未结 3 1509
野趣味
野趣味 2021-02-05 11:15

All was working fine and dandy with Eclipse in Windows until I switched to Mac OS X Yosemite, using Android Studio V1.0. I imported the project as a Non-Android Studio project s

3条回答
  •  一整个雨季
    2021-02-05 11:32

    For Android Studio 2.2 you have To add compile option in gradle file of your project:

    android { ... compileOptions { encoding "ISO-8859-1" sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } }

提交回复
热议问题