1

私の android gradle ビルドには多くのフレーバーがあります。そのうちの 1 つには、重複した依存関係 (com.google.zxing) を含む aar ファイルがあります。

build.gradle:

...
dependencies {
    implementation 'com.google.zxing:core:3.3.3'
    implementation 'me.dm7.barcodescanner:zxing:1.9.8'
    // Standard flavour
    standardImplementation(name: 'libgedi-0.190121.gpos800', ext: 'aar') {
        exclude group: 'com.google.zxing', module: 'android-core'
        transitive = false
    }
    ...
}

この構成は、「標準」ビルドに対して次を生成します (別のフレーバーで機能します)。

    Duplicate class com.google.zxing.BarcodeFormat found in modules core-3.3.3.jar (com.google.zxing:core:3.3.3) and zxing-2.1.jar (:libgedi-0.190121.gpos800:)
    Duplicate class com.google.zxing.Binarizer found in modules core-3.3.3.jar (com.google.zxing:core:3.3.3) and zxing-2.1.jar (:libgedi-0.190121.gpos800:)
    Duplicate class com.google.zxing.BinaryBitmap found in modules core-3.3.3.jar (com.google.zxing:core:3.3.3) and zxing-2.1.jar (:libgedi-0.190121.gpos800:)
    Duplicate class com.google.zxing.ChecksumException found in modules core-3.3.3.jar (com.google.zxing:core:3.3.3) and zxing-2.1.jar (:libgedi-0.190121.gpos8
    ...

構成を次のように変更しようとしました。

    standardImplementation(name: 'libgedi-0.190121.gpos800', ext: 'aar') {
        configurations {
            all*.exclude group: 'com.google.zxing'
        }
    }

上記の構成は、「標準」フレーバーをビルドしている場合にのみ機能します。別のフレーバーでは、次のエラーが発生します。

error: package com.google.zxing.qrcode.decoder does not exist

私が間違っているのは何ですか?

4

1 に答える 1