I’m trying to update the Android UI kit to version 4.0.0-beta26 and the FCM dependency to 6.45.0:
implementation 'com.github.AmityCo.Amity-Social-Cloud-UIKit-Android:amity-uikit:4.0.0-beta26'
implementation 'com.github.AmityCo.Amity-Social-Cloud-SDK-Android:amity-push-fcm:6.45.0'
And this gets duplicate classes error:
Duplicate class com.amity.socialcloud.sdk.log.AmityLog found in modules jetified-amity-log-6.45.0-runtime (co.amity.android:amity-log:6.45.0) and jetified-amity-log-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:amity-log:6.45.0)
Duplicate class com.amity.socialcloud.sdk.log.AmityLogProvider found in modules jetified-amity-log-6.45.0-runtime (co.amity.android:amity-log:6.45.0) and jetified-amity-log-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:amity-log:6.45.0)
Duplicate class com.amity.socialcloud.sdk.log.AmityLogProvider$Companion found in modules jetified-amity-log-6.45.0-runtime (co.amity.android:amity-log:6.45.0) and jetified-amity-log-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:amity-log:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.EkoPushContract found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.EkoPushContractWrapper found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.EkoPushContractWrapper$Companion found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.PushInitProvider found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.PushInitProvider$Companion found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Duplicate class com.amity.socialcloud.sdk.push.PushService found in modules jetified-core-push-6.45.0-runtime (co.amity.android:core-push:6.45.0) and jetified-core-push-6.45.0-runtime (com.github.AmityCo.Amity-Social-Cloud-SDK-Android:core-push:6.45.0)
Any workaround for this?