728x90
안드로이드 빌드를 했을 때
'Your project path contains non-ASCII characters' 같은 에러가 나오며 안될 때가 있다.
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 adding the line 'android.overridePathCheck=true' to gradle.properties file in the project directory. |
Open File을 누르면 build.gradle 파일이 열리는데
프로젝트의 경로가 영어가 아닐 때 발생하는 에러다.
(project path is not english. ex. Korean)
gradle.properties 파일에 com.android.build.gradle.overridePathCheck=true 를 추가 한다.
그리고는 try again 하면 된다.
728x90