Android Studio - non-ASCII Characters

1

I bought a project for android studio. when opening the following error appears.

  

Error: (14, 0) Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory. See link for details. -Dcom.android.build.gradle.overridePathCheck = true, or adding the line com.android.build.gradle.overridePathCheck = true 'to gradle.properties file in the project directory.

What should I do to fix it?

    
asked by anonymous 08.04.2016 / 00:37

2 answers

7

The error is alerting you that the project path has letters outside of ASCII. It's probably sharp letters, cedilla, typographical hyphens, that sort of thing, and that causes problems.

What should you do?

  

Please move your project to a different directory.

Move / copy your project to a path that only contains letters and numbers, no accents, cedilla, etc. C:\Temp\Projeto might be a try.

    
08.04.2016 / 02:18
1

09.04.2016 / 04:49