gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:24:12 24 4
gpt4 key购买 nike

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

但是,我无法找到如何使用 apply plugin: 'android-apt' 解决问题 我已经尝试了几种方法,例如将其从项目 gradle 中删除并将其添加到应用程序 gradle 作为 annotationProcessor 'com.neenbedankt.gradle.plugins:android-apt:1.8' 。还删除了 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
}

应用程序等级

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'

最佳答案

不要使用apt插件,像这样添加依赖:

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

Reference

关于android - 由于 android-apt 插件,Android Studio 3.0 上的 Butterknife gradle 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46955653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com