具体的错误提示
Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin [id 'com.android.application']
通过上面的错误信息看不出具体的问题,主要提示错误就是没有找到这个application,然后大家可以通过event log 来查看具体的错误信息。
Gradle sync failed: 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. (1 s 120 ms)
通过这个信息就能读出具体的问题了,比如他说可能是因为有中文路径,导致没有编译成功。
解决方法:在gradle.properties文件中添加android.overridePathCheck=true就可以了。
当然你自己也可以以后不路径不要使用中文,也不会遇到这样的错我了。