2

我正在 android studio 中构建一个 android 应用程序,但遇到重复依赖项的问题。

Duplicate class javax.inject.Inject found in modules jetified-javax.inject-1.jar (javax.inject:javax.inject:1) and jetified-javax.inject-2.5.0-b42.jar (org.glassfish.hk2.external:javax.inject:2.5.0-b42)

这两个依赖项对我来说都非常有用,我尝试从它们中的任何一个中排除有问题的依赖部分,这最终破坏了一个或另一个。

我一直在阅读关于影子罐子的文章,据我所知,这听起来像是一颗神奇的子弹,所以我试了一下。从我读过和听到的内容来看,您只是将其添加为依赖项,它神奇地修复了所有内容。我尝试添加它,但我仍然收到错误,但我在网上阅读,如果您希望它在大量工作的情况下工作,则必须拥有 java 或 groovy 插件。这些中的任何一个都让 android studio 非常不高兴,因为 android 有自己稍微修改过的 java 或其他东西。

非常感谢有关如何使影子 jar 工作的建议,但如果有人有任何其他解决方法可以让我继续使用我希望听到的两个冲突的依赖项。如果我犯了一些新手错误,我很抱歉。

我的毕业档案

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

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        applicationId "com.example.scrood"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.github.jengelman.gradle.plugins:shadow:6.0.0'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.squareup.picasso:picasso:2.5.1'
    implementation 'org.glassfish.jersey.core:jersey-client:2.27'
    implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:2.27'
    implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.10.4'
    implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.4'
    implementation 'com.google.android.gms:play-services-maps:17.0.0'
    implementation ('com.google.android.libraries.places:places:2.3.0')
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
4

0 回答 0