gpt4 book ai didi

android - 无法为类型为 'packageForR' 的任务获取未知属性 '::processDebugResources'

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:46:32 28 4
gpt4 key购买 nike

Bug:我想将 Realm 数据库从 4.2.0 版本更新到 4.3.3,但是在 gradle sync 之后,它会失败

目标

将领域从 4.2.0 更新到 4.3.3

预期结果

Gradle 同步会成功

实际结果

Gradle 同步失败,堆栈跟踪:

Error:Execution failed for task ':QuizApp:processDebugResources'.
Could not get unknown property 'packageForR' for task
':QuizApp:processDebugResources' of type
com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask.

顶级gradle文件

buildscript {
repositories {
jcenter { url 'http://jcenter.bintray.com/' }
maven { url 'https://maven.fabric.io/public' }
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
mavenCentral()
google()
}
dependencies {
// classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.2.0-alpha01'

classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'io.fabric.tools:gradle:1.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "com.github.nullstress:DependencyAnalysisPlugin:1.0.3"
classpath 'com.google.gms:google-services:3.1.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'
classpath "io.realm:realm-gradle-plugin:4.3.2"
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.2'
}
}

我尝试清理 gradle 缓存并停止 gradle 守护进程。然后重试构建。但问题依旧

最佳答案

如果您正在使用 ButterKnife,只需删除 ButterKnife gradle 插件,并使用 annotationProcessor + implementation 版本反而。请参阅以下步骤:

  1. 在 gradle 中删除 apply plugin: 'com.jakewharton.butterknife'
  2. 只需在 gradle 中使用/添加以下依赖项即可:

    dependencies {
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    }

关于android - 无法为类型为 'packageForR' 的任务获取未知属性 '::processDebugResources',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48713415/

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