android - 将 Android Studio Gradle 升级到 6.1.1 会破坏 Greendao3GradlePlugin

标签 android gradle greendao

今天早上我升级了 Android Studio 以使用 Gradle 6.1.1。

现在,我的构建尝试失败并出现以下错误:

Unable to find method 'org.gradle.api.tasks.TaskInputs.property(Ljava/lang/String;Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputs;'. Possible causes for this unexpected error include: Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network)

The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart)

Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.



我用过 Gradle Build Scan找到问题。

问题出在 Greendao3GradlePlugin第三方插件。

有谁知道如何解决这个问题?

最佳答案

您应该更新 Greendao到最新版本


// In your root build.gradle file:
buildscript {
    repositories {
        jcenter()
        mavenCentral() // add repository
    }
    dependencies {
        classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' // add plugin
    }
}

// In your app projects build.gradle file:
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao' // apply plugin

dependencies {
    implementation 'org.greenrobot:greendao:3.3.0' // add library
}
查询 Greendao发行说明 here

关于android - 将 Android Studio Gradle 升级到 6.1.1 会破坏 Greendao3GradlePlugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62379224/

相关文章:

android - CircleCI 2.0 Android 构建总是失败

android - :checkDebugManifest FAILED => file specified for property 'manifest' does not exist

java - 将使用插件的Maven项目转换为Gradle项目

android - 如何用greenDAO实现观察者模式?

GreenDao 字符串条件?

android - GreenDAO 与 Sqlcipher 集成示例

android 谷歌地图 populate() VS invalidate()

android - 如何在Android中获取Listview项选择的计数

android - react 本地android list 合并失败

android - 为什么intellij必须为我制作的每个android项目安装不同的gradle版本