因为我收到此错误image
,我无法构建项目我尝试了我能找到的所有解决方案,但我没有运气。我使用的是AS 2.1.3。这是我的依赖:
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
今天早上我能够毫无问题地工作,我唯一做的就是在AsyncTask中进行一些更改。
答案 0 :(得分:2)
我通过删除C:\ Users \ MyUsername。中的.gradle文件夹解决了这个问题。
答案 1 :(得分:-1)
问题不在网络中你只需要添加
buildscript {
repositories {
jcenter()
}
dependencies {
// the latest version of the android-apt plugin
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
}
}
申请插件:' com.neenbedankt.android-apt'这个库。希望这会有助source