当我更新android studio时,我遇到关于dataBinding
的错误:
错误:(1,0)android / databinding / tool / DataBindingBuilder
这是我的build gradle app
:
apply plugin: 'com.android.application'
dependencies {
'com.android.databinding:compiler:2.3.0'
}
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.example.theodhor.retrofit2"
minSdkVersion 17
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup:otto:1.3.8'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.android.support:design:25.0.1'
testCompile 'junit:junit:4.12'
compile 'org.apache.httpcomponents:httpclient:4.5.3'
exclude module: "httpclient"
classpath 'com.android.tools.build:gradle:1.5.0-beta2'
}
我收到此错误:
错误:(1,0)android / databinding / tool / DataBindingBuilder打开文件
失败:构建因异常而失败。 *其中:构建文件'/Users/marco/Downloads/Retrofit-master/app/build.gradle'行:1 *出了什么问题:评估项目':app'时出现问题。 > android / databinding / tool / DataBindingBuilder *尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。 BUILD FAILED总时间:0.686秒
我不知道为什么会遇到这个问题。 谁能帮帮我?
谢谢大家!!!