4
This error appeared in Android Studio. Is there any setup to fix?
Error:(85, 69) error: unmappable Character for encoding UTF-8
4
This error appeared in Android Studio. Is there any setup to fix?
Error:(85, 69) error: unmappable Character for encoding UTF-8
6
You can solve this problem in two ways:
To convert the file, click the menu, right down in your IDE. Select the correct type of encoding (type used autalmente), then press "Reload", select UTF-8 and press convert.
For the second solution, put the correct type of encoding, in your build.Radle, as follows:
android {
...
compileOptions.encoding = 'windows-1251' // coloque seu encoding atual aqui
...
That one blog is very interesting too. I recommend reading.
Browser other questions tagged android android-studio utf-8
You are not signed in. Login or sign up in order to post.
If the answer is correct, please make the necessary marking :).
– EduardoFernandes