You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
I added codepush on android with cordova-plugin-firebase-dynamiclinks already installed, I got on graddle sync step :
ERROR: 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.1 -> 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 net.minidev:json-smart@{strictly 2.3}
-- Project 'app' depends onto com.nimbusds:nimbus-jose-jwt@{strictly 5.1}
-- Project 'app' depends onto com.nimbusds:[email protected]
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.
I ran into this with the FirebaseX plugin (conflicting with CodePush). I ran into 2 different solution options:
Adjust the CodePush build-extras.gradle file to exclude part of the nimbus-jose-jwt package that seems to be included in other Firebase/Google service packages. Explained here.
Adjust the Firebase plugin to upgrade to google-services 4.3.3. The conflict seems to be handled better with that. Explained here. In your case it looks like this may be needed in the cordova-support-google-services plugin (which is pulled in with the firebase-dynamiclinks plugin).
Description
I added codepush on android with cordova-plugin-firebase-dynamiclinks already installed, I got on graddle sync step :
Reproduction
Start a cordova project
Build for Android
Additional Information
Thanks for support,
Regards.
Nicolas
The text was updated successfully, but these errors were encountered: