Windows下,Android Studio项目路径中包含中文字符无法编译的问题


Android Studio项目路径中包含中文字符无法编译的问题报错Your project path contains non-ASCII characters.

Android Studio 报下面的错误

Error:(1, 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 http://b.android.com/95744 for details. This warning can be disabled
 by using the command line flag -Dcom.android.build.gradle.overridePathCheck=true, or adding the line com.android.build.
 gradle.overridePathCheck=true' to gradle.properties file in the project directory.

解决方法:

1、打开gradle.properties配置文件
2、添加属性 com.android.build.gradle.overridePathCheck=true
3、选中项目->Build->Clean Project清除一下项目,重新Run一下就通过了 .

注:此方法只能解决java代码的问题。如果工程中还有C++工程,CMake编译的时候还是会报错。

解决办法是创建中文路径的软连接。打开cmd,键入如下命令:
    mklink /d 软连接路径 目标中文路径
    
    eg:
    mklink /d D:\mobile\src\demo\linkdir D:\mobile\src\demo\中文工程test路径
为 D:\mobile\src\demo\linkdir <<===>> D:\mobile\src\demo\中文工程test路径 创建的符号链接
创建成功后,用Android Studio打开软连接路径下的工程即可。


你可能感兴趣的:(Android)