android - 任务之间的 Gradle 依赖关系

标签 android gradle kotlin android-databinding android-room

因此,自从添加了新的 Room android 架构库后,这种情况就开始发生了。我遇到了 AppDatabase_Impl 不存在的问题,我通过将 kapt 添加到注释中来解决这个问题:

我怀疑是由 AS、Kotlin 和 Java 8 引起的其他错误,因此我尝试更新到 AS 3.0

我现在在尝试构建时收到以下错误:

Information:Gradle tasks [:app:generateDebugSources,     :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:compileDebugSources, :app:compileDebugAndroidTestSources, :app:compileDebugUnitTestSources, :cryptocurrency-icons:generateDebugSources, :cryptocurrency-icons:mockableAndroidJar, :cryptocurrency-icons:generateDebugAndroidTestSources, :cryptocurrency-icons:compileDebugSources, :cryptocurrency-icons:compileDebugUnitTestSources, :cryptocurrency-icons:compileDebugAndroidTestSources]
Error:Circular dependency between the following tasks:
:app:compileDebugKotlin
+--- :app:dataBindingExportBuildInfoDebug
|    \--- :app:compileDebugKotlin (*)
\--- :app:kaptDebugKotlin
     \--- :app:dataBindingExportBuildInfoDebug (*)
(*) - details omitted (listed previously)
Information:BUILD FAILED in 1s
Information:1 error
Information:0 warnings
Information:See complete output in console

我的 gradle 文件如下所示:

项目分级

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

buildscript {
    repositories {
        jcenter()
    }

    ext {
        compileSdkVersion = 25
        buildToolsVersion = "25.0.3"
        minSdkVersion = 16
        targetSdkVersion = 25
        kotlin_version = '1.1.2-4'
        gradle_version = '2.3.2'
        android_arch_room_version = '1.0.0-alpha1'
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-alpha2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

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

模块分级

apply plugin: 'com.android.library'

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        minSdkVersion rootProject.minSdkVersion
        targetSdkVersion rootProject.targetSdkVersion
        consumerProguardFiles 'consumer-proguard-rules.pro'
        versionCode 100
        versionName "1.0.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile 'com.mikepenz:iconics-core:2.8.2@aar'
}

应用分级

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

kapt {
    generateStubs = true
}

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion
    defaultConfig {
        applicationId "com.my.application"
        minSdkVersion rootProject.minSdkVersion
        targetSdkVersion rootProject.targetSdkVersion
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dataBinding {
        enabled = true
    }
}

dependencies {
    //Jars
    compile fileTree(include: ['*.jar'], dir: 'libs')
    //Modules
    compile project(':cryptocurrency-icons')
    //Kotlin
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    //Support
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    //OSS
    compile 'com.squareup.retrofit2:retrofit:2.3.0'
    compile 'com.squareup.retrofit2:converter-scalars:2.3.0'
    compile 'com.github.daniel-stoneuk:material-about-library:1.9.0'
    compile 'com.mikepenz:iconics-core:2.8.2@aar'
    compile 'com.mikepenz:community-material-typeface:1.9.32.1@aar'
    compile 'com.github.paolorotolo:appintro:4.1.0'
    compile 'com.journeyapps:zxing-android-embedded:3.5.0'
    //Data binding
    kapt "com.android.databinding:compiler:$gradle_version"
    //Room
    compile "android.arch.persistence.room:runtime:$android_arch_room_version"
    kapt  "android.arch.persistence.room:compiler:$android_arch_room_version"
    //Test
    testCompile 'junit:junit:4.12'
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
}
repositories {
    mavenCentral()
}

最佳答案

请查看this . 看起来这是 Kotlin Gradle 插件 1.1.2-4 中的一个错误

关于android - 任务之间的 Gradle 依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44230857/

相关文章:

java - 保存 Activity 或服务中未处理的异常而不崩溃

java - 如何使用 AlarmManager 将闹钟设置为每个月的第一个星期四

android - Gradle 构建无法从自定义 Maven 存储库获取依赖项

android - gradle中的依赖冲突

android - 元素共享的过渡有效,但是共享的多个元素不起作用[Android]

Android Kotlin - 如何扩展 ConstraintLayout?

arrays - 在 Kotlin 中使用嵌套 for 循环导航多维数组

Android DDMS 设备列表在 IntelliJ AS 中包含一个额外的未知设备,如何删除它?

Linux 上的安卓三星 Galaxy s5

java - Android 合并调试资源失败