由于android-apt插件,Android Studio 3.0上的Butterknife gradle错误

时间:2017-10-26 13:27:51

标签: android android-gradle build.gradle butterknife android-studio-3.0

升级到Android Studio 3.0后,我遇到了gradle的一些问题,我可以修复对开发人员的检查website

但是,我无法找到如何使用apply plugin: 'android-apt'来解决问题我尝试了几项操作,例如将其从项目gradle中删除,并将其作为annotationProcessor 'com.neenbedankt.gradle.plugins:android-apt:1.8'添加到a​​pp gradle中。还删除了apt等等。

无论如何,Studio正在抱怨它。任何帮助是极大的赞赏。谢谢!

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

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

    }
}

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

    ext {
        supportLibVersion = '27.0.0'
        firebaseLibVersion = '11.4.2'
    }
}

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

APP GRADLE

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.0"
    defaultConfig {
        applicationId "xxxxxxxxxxxxxxxxxxxx"
        minSdkVersion 17
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"

        vectorDrawables.useSupportLibrary = true

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    apply plugin: 'android-apt'
}

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

    compile "com.android.support:appcompat-v7:${supportLibVersion}"
.....

    compile 'com.google.android.gms:play-services-auth:11.4.2'

    compile 'com.jakewharton:butterknife:8.4.0'
    apt 'com.jakewharton:butterknife-compiler:8.4.0'

}
apply plugin: 'com.google.gms.google-services'

2 个答案:

答案 0 :(得分:7)

不要使用apt插件,添加如下依赖项:

compile "com.jakewharton:butterknife:8.8.1"
annotationProcessor "com.jakewharton:butterknife-compiler:8.8.1"

Reference

答案 1 :(得分:0)

如果你赶时间,可以禁用那个东西。

根据文件

  

如果您在迁移到新依赖项时遇到问题   解决策略,您可以将行为恢复到Android的行为   插件2.3.0通过设置includeCompileClasspath为true。然而,   不建议将行为恢复到版本2.3.0。

android {
    ...
    defaultConfig {
        ...
        javaCompileOptions {
            annotationProcessorOptions {
                includeCompileClasspath false
            }
        }
    }
}

还有一件事需要在gradle文件中的buildTypes标记中定义flavorDimensions "default"属性。

您可以查看有关此here的更多信息。