web-dev-qa-db-ja.com

プロジェクト「アプリ」で、解決されたGoogle Play開発者サービスライブラリの依存関係は、正確なバージョンの別の依存関係に依存します(たとえば、「[1.3.1、2.3]」、

このリンクを参照したプロジェクトにSSOを追加しようとしました sso

この行をbuild.gradle(Module:app)に追加した後

//Microsoft
implementation 'com.Microsoft.identity.client:msal:0.2.+'

次のエラーが発生しています

   In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[1.3.1
,2.3]", but isn't being resolved to that version. Behavior exhibited by the library will be unknown.

Dependency failing: com.nimbusds:nimbus-jose-jwt:5.7 -> net.minidev:json-smart@[1.3.1,2.3], but json-smart version was 2
.3.

The following dependencies are project dependencies that are direct or have transitive dependencies that lead to the art
ifact with the issue.
-- Project 'app' depends onto com.Microsoft.identity.client:[email protected].+
-- Project 'app' depends onto net.minidev:json-smart@{strictly 2.3}
-- Project 'app' depends onto com.nimbusds:nimbus-jose-jwt@{strictly 5.7}
-- Project 'app' depends onto com.Microsoft.identity.client:msal@{strictly 0.2.2}
-- Project 'app' depends onto com.Microsoft.identity:common@{strictly 0.0.8}

For extended debugging info execute Gradle from the command line with ./gradlew --info :app:assembleDebug to see the dep
endency paths to the artifact. This error message came from the google-services Gradle plugin, report issues at https://
github.com/google/play-services-plugins and disable by adding "googleServices { disableVersionCheck = false }" to your b
uild.gradle file.

ビルドファイル(Module:app)//

FireBase
    implementation 'com.google.firebase:firebase-core:15.0.2'
    implementation 'com.google.firebase:firebase-messaging:17.6.0'
    implementation'com.google.firebase:firebase-auth:16.1.0'


    // GMS:play-services
        implementation 'com.google.Android.gms:play-services-flags:16.0.1'
        implementation 'com.google.Android.gms:play-services-basement:16.0.1'
        //Constrain layout
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

        //Microsoft 
        implementation 'com.Microsoft.identity.client:msal:0.2.+'

だから誰かがこの問題を解決する方法を私に提案することもできます

次のことを試しました1 SDK ManagerのGoogle Playサービスを更新しました2 SDK ManagerのSDKビルドツールを更新しました

だから誰かがこの問題を解決する方法を私に提案できますか

6
fazil

Google Play開発者サービスのバージョンチェックを無効にすることを示唆する その他の回答 は古くなっています。更新してください com.google.gms:google-servicesからバージョン4.3.3 +。

1
Rafal Zawadzki