【问题标题】:Program type already present: org.intellij.lang.annotations.Flow程序类型已经存在:org.intellij.lang.annotations.Flow
【发布时间】:2018-09-23 12:14:08
【问题描述】:

每当我尝试在 Kotlin 中运行程序时都会收到此错误。我的 gradle 文件是这样的:Project Level Gradle

buildscript {
    ext.kotlin_version = '1.2.30'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:3.2.0'
    }
}
allprojects {
    repositories {
        google()
        jcenter()
    }
}
task clean(type: Delete) {
    delete rootProject.buildDir
}

和应用级 Gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'
ext.supportLibraryVersion = '27.1.1'
ext.playServices = '11.6.2'
android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.rossa.rossa"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    repositories {
        jcenter()
        maven { url 'https://jitpack.io' }
        mavenCentral()
        google()
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
    implementation "com.android.support:design:$supportLibraryVersion"
    implementation "com.android.support:cardview-v7:$supportLibraryVersion"
    implementation 'com.jakewharton.timber:timber:4.6.1'
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.squareup.retrofit2:retrofit:2.3.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
    implementation 'com.squareup.okhttp3:okhttp:3.9.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'
    implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
    implementation 'com.appolica:flubber:1.0.1'
    implementation 'org.greenrobot:eventbus:3.1.1'
    implementation 'com.github.daniel-stoneuk:material-about-library:2.2.3-support26.1.0'
}

每当我尝试运行程序时,我都会收到此错误

程序类型已存在:org.intellij.lang.annotations.Flow Message{kind=ERROR, text=程序类型已存在:org.intellij.lang.annotations.Flow, sources=[未知源文件], 工具名称=Optional.of(D8)}

【问题讨论】:

    标签: android android-studio intellij-idea kotlin kotlin-android-extensions


    【解决方案1】:

    请在您的 App 级别 build.gradle 中添加以下行。

    configurations {
        cleanedAnnotations
        compile.exclude group: 'org.jetbrains' , module:'annotations'
    }
    

    【讨论】:

    • 天哪!你怎么知道这样的事情?你救了我!
    • 我试过了,工作了,但我不明白这是什么原因,简单解释一下问题?谢谢。
    • 为我工作。 1000 为你鼓掌。
    • 我试图投票赞成这个答案,但我不能......因为我在一年前就这样做了。
    • 你能解释一下这里发生了什么吗?
    【解决方案2】:

    排除jetbrains 注释模块是一种解决方法;为什么它首先出现在您的项目中?最有可能的是,当您真正想要的是 Android 自己的注解时,它会被 Android Studio 自动添加到您的类路径中。

    因此,更好的解决方案是在您的 build.gradle 文件中查找 org.jetbrains:annotations 依赖项,如下所示:

    implementation 'org.jetbrains:annotations-java5:15.0'
    

    ...然后删除它。

    【讨论】:

      【解决方案3】:

      对我来说,这只是一个小故障 - “清洁项目”有所帮助。

      【讨论】:

        【解决方案4】:

        节目类型已经存在:

        org.intellij.lang.annotations.JdkConstants$PatternFlags
        

        了解如何解决此问题:https://developer.android.com/studio/build/dependencies#duplicate_classes

        【讨论】:

          猜你喜欢
          • 2019-02-22
          • 1970-01-01
          • 2018-10-21
          • 1970-01-01
          • 2018-10-03
          • 2019-04-10
          • 2018-11-15
          • 1970-01-01
          • 1970-01-01
          相关资源
          最近更新 更多