android - butterknife 8.8.1 : Plugin with id 'com.jakewharton.butterknife' not found

标签 android android-studio butterknife

每次尝试运行我的项目时,我都会遇到一个问题,即找不到 ID 为“com.jakewharton.butterknife”的错误插件。出现 有人能告诉我这段代码是怎么回事吗?? 我被卡住了,感谢任何帮助 这是 Gradle

 apply plugin: 'com.android.library'
    apply plugin: 'com.jakewharton.butterknife'
    android {
        compileSdkVersion 27
        buildToolsVersion '27.0.3'
        flavorDimensions "default"
        defaultConfig {
            minSdkVersion 15
            targetSdkVersion 27

            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
dependencies {
   final SUPPORT_LIB_VERSION = '27.0.2'
    final COLOR_PICKER_VERSION = '1.5'
    final BUTTER_KNIFE_VERSION = '8.8.1'

    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile 'com.google.android.gms:play-services-ads:11.8.0'
    //noinspection GradleCompatible
    compile "com.android.support:appcompat-v7:27.0.2"
    compile "com.larswerkman:HoloColorPicker:1.5"
    compile 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    compile project(':library')
}

buildscript {
    repositories {
        google()
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.1.1'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}

allprojects {
    repositories {
        google()
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
}

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

项目等级

最佳答案

我认为您需要为 Android Studio 3.0 及更高版本使用 SNAPSHOT 或将您的 ButterKnife 降级到 8.4.0:annotationProcessor libraryplugin 也可以。已测试。

关于android - butterknife 8.8.1 : Plugin with id 'com.jakewharton.butterknife' not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48562183/

相关文章:

android - getView() 的两种实现有什么区别?

android - android webView 中的异常

Android - 预览和设计 View 上的 "Exception raised during rendering: Could not initialize class libcore.util.ZoneInfoDB"

android - 如何从 res/font 目录链接 android/assets 文件夹中的 css 文件中的字体

java - android bootcamp 医疗计算器无法打开

android - @OnClick 在 ButterKnife 库的实现中不起作用

android - 什么 Firebase-cloud-messaging Intent-filter 用于 BroadcastReceiver?

android - Butterknife 7.x 是否适用于 Kotlin M14?

android - Dagger 和 butterknife

android - 如何在 ImageView 中设置运行时决定的图像?