First steps on Android

0

Recently I started learning a bit about Android and working with AndroidStudio.

I have a project that serves as a study, but it was developed in Linux and I use Windows 8.1 when compiling it, it shows me the following error:

  

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 link for details. This warning can be disabled by adding the line 'android.overridePathCheck = true' to gradle.properties file in the project directory.   

I would like you to help me solve it. Greetings

    
asked by Cecilia Esther Hernndez Espino 05.07.2017 в 16:17
source

1 answer

4

This works when the path of your project has non-native English characters such as accents. They have also reported errors with path that has characters in Chinese .

For example:

C:/proyectos_android/información_medica/

Try to move it to a path where it's just letters without any other special characters or accents.

  C:/proyectos_android/informacion_medica/
    
answered by 05.07.2017 в 16:26