错误:无法找到方法 'com.android.build.gradle.api.BaseVariant.getOutputs()Ljava / util的/列表;'。 此意外错误的可能原因包括:Gradle的依赖性 缓存可能已损坏(这有时会在网络连接后发生 超时。)
重新下载依赖项和同步项目(需要网络)。
Gradle构建过程(守护程序)的状态可能已损坏。停止 所有Gradle守护进程都可以解决这个问题。
停止
Gradle
构建过程(需要重启)。你的项目可能是 使用与另一个不兼容的第三方插件 项目中的插件或者请求的Gradle
版本 项目。如果Gradle进程损坏,您也可以尝试关闭 IDE然后杀死所有Java进程。
这是我的文件build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.minh.findtheshipper"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
ext.kotlin_version = '1.1.2-4'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [onesignal_app_id: "c435c556-1f73-4ac6-9c50-11d2c08e803c",
// Project number pulled from dashboard, local value is ignored.
onesignal_google_project_number: "REMOTE"]
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '26.0.2'
}
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile('com.mikepenz:materialdrawer:5.9.2@aar') {
transitive = true
}
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.jakewharton:butterknife:8.6.0'
compile 'com.mikepenz:google-material-typeface:3.0.1.0.original@aar'
compile 'com.mikepenz:fontawesome-typeface:4.7.0.0@aar'
compile 'com.facebook.android:facebook-android-sdk:4.27.0'
compile 'com.sdsmdg.tastytoast:tastytoast:0.1.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.github.bumptech.glide:glide:4.0.0'
compile 'com.google.android.gms:play-services-maps:11.4.2'
compile 'com.google.maps.android:android-maps-utils:0.5'
compile 'com.google.android.gms:play-services-location:11.4.2'
compile 'com.google.android.gms:play-services-places:11.4.2'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.mikepenz:actionitembadge:3.3.1@aar'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:support-v4:26.1.0'
compile 'com.google.firebase:firebase-core:11.4.2'
compile 'com.google.firebase:firebase-database:11.4.2'
compile 'com.google.firebase:firebase-messaging:11.4.2'
compile 'com.github.markushi:circlebutton:1.1'
compile 'com.onesignal:OneSignal:3.6.5'
compile 'com.kofigyan.stateprogressbar:stateprogressbar:0.0.6'
compile 'com.squareup.okhttp3:okhttp:3.9.0'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
}
apply plugin: 'com.jakewharton.butterknife'
apply plugin: 'realm-android'
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:6)
我通过删除' apply plugin解决了我的问题:' com.jakewharton.butterknife'。 不要删除' classpath' com.jakewharton:butterknife-gradle-plugin:8.8.1'。它之前会误解你BindView的所有内容。
答案 1 :(得分:1)
在Android studio 3.0中 如果您正在使用butterknife,那么从gradle中删除这2行
1)申请插件:' com.jakewharton.butterknife' 2)classpath' com.jakewharton:butterknife-gradle-plugin:8.8.1'
如果您正在使用lamda,请从gradle中删除这2行 1)申请插件:' me.tatarka.retrolambda' 2)classpath' me.tatarka:gradle-retrolambda:3.6.1'
我通过从gradle中删除这些行来解决我的问题