无法让ButterKnife与Android Studio合作

问题描述 投票:0回答:2

我已经搜索并尝试了许多尝试来解决错误,到目前为止没有任何工作。我的代码运行正常,直到我决定使用Butter Knife。我已经更新了我的gradle文件:

app.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
apply plugin: 'com.jakewharton.butterknife'

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'
    defaultConfig {
        applicationId "com.udacity.sandwichclub"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    google()
}

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'

    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.android.support:recyclerview-v7:28.0.0'

    //butterknife
    implementation 'com.jakewharton:butterknife:10.0.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
}

项目gradle文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
        classpath 'com.jakewharton:butterknife-gradle-plugin:10.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

如果我离开,我收到此错误:

错误:Android Gradle插件3.3.0不得应用于项目'/ Users / verityt / Documents / Android / NanoDegree2018 / SandwichClub / app',因为版本3.3.0已经应用于此项目打开文件

我试着评出Jake Wharton的Butter Knife指令中列出的一个apply插件

// apply plugin:'com.android.library'

我收到这个错误:

使用OS独立路径'META-INF / androidx.core_core.version'找到多个文件

有什么帮助吗?

android android-gradle butterknife
2个回答
0
投票

很少有笔记

在库/模块中导入时使用com.android.library

此外,不要将插件与com.android.application一起使用。

你可以做什么

android {
     packagingOptions {
         exclude 'META-INF/androidx.core_core.version'
     }
}

重要的提示

在这种依赖性更新期间,首先阅读他们的发行说明和可能的副作用是很好的

例如。


0
投票

改为实现'com.jakewharton:butterknife:8.0.0'annotationProcessor'com.jakewharton:butterknife-compiler:8.0.0'

那对我没关系。

© www.soinside.com 2019 - 2024. All rights reserved.