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 'an..
Programming/Android 2017. 4. 18. 21:35반응형
1. 에러
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
2. 원인
프로젝트가 한글이 포함된 경로가 있는 것이 문제가 될 수 있음.
3. 해결 방법
../{프로젝트 경로}/gradle.properties
에 아래와 같이 추가하고, 경로를 한글 경로가 없는 곳으로 프로젝트를 옮긴다. 옮기지 않으면, 제대로 컴파일이 되지 않을 수 있다.
android.overridePathCheck=true
반응형