中文路径导致的报错

Error:Your project path contains non-ASCII characters.

根据提示
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.

在gradle.properties中添加
com.android.build.gradle.overridePathCheck=true
即可

或者更简单的
把现有的项目的路径修改为不包含英文的。

但是经测试貌似添加
com.android.build.gradle.overridePathCheck=true
的方法后续还会有问题
而中文路径改成英文后可以运行了
所以还是不要用中文路径了

你可能感兴趣的:(java,安卓,gradle,android,studio,android)