Android Studio Compile-time Gradle report garbled

Source: Internet
Author: User

In fact, this problem has been plagued for a long time, but no impact on the compilation, has been put, and today, I have met, it is not over, to find a solution, and then, the answer is all the same, and also tried, no use, too much.

The problem is that the code has Chinese, Chinese is in the comments, the time is completely normal to display, but the compile time Gradle will error, but it can be compiled successfully. This Nima, the real egg hurts. Hint information is also garbled, do not ask me since garbled the following information you are how to come out, this is not important, the important is how to solve.

Compile-time gradle error message "Encoding UTF-8 non-mapped characters"

Set up the character set in the settings first,

Settings->file Encodings->ide Encodeing->utf-8
Settings->file Encodings->project Encodeing->utf-8

If that doesn't work, keep looking down, if you can, the following steps are ignored.

Many of the online solutions are in the corresponding module under the Build.gradle to add the following configuration

tasks.withType(Compile) {      options.encoding"UTF-8"  }  

However, this configuration can be effective before gradle2.0, and will not take effect after gradle2.0, because

Compile has been renamed to Javacompile

So the configuration you need to add after gradle2.0 is as follows

tasks.withType(JavaCompile) {      options.encoding"UTF-8"  }  

Android Studio Compile-time Gradle report garbled

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.