In windows error is thrown when building with gradle because the package names have non-ascii characters in them. We get the following error
Caused by: org.gradle.api.tasks.StopExecutionException: 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.
As mentioned in the error we can by pass this by using android.overridePathCheck=true. But I prefer we just update the name in general. I think that's a much cleaner and sustainable way.
The culprit is : Variant — Kyoto the symbol seperating both words —. Same for the other packages.
In windows error is thrown when building with gradle because the package names have non-ascii characters in them. We get the following error
As mentioned in the error we can by pass this by using
android.overridePathCheck=true. But I prefer we just update the name in general. I think that's a much cleaner and sustainable way.The culprit is :
Variant — Kyotothe symbol seperating both words—. Same for the other packages.