diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2f041eb82..10e66312987 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## XX.XX.XX - 2023-XX-XX +### All SDKs +* [FIXED][6602](https://github.com/stripe/stripe-android/pull/6602) Fixed an issue which caused a compiler error (duplicate class) when including payments *and* identity SDKs. + ## 20.24.0 - 2023-04-24 ### PaymentSheet diff --git a/stripe-ui-core/build.gradle b/stripe-ui-core/build.gradle index 4df72642c23..25ef4958c42 100644 --- a/stripe-ui-core/build.gradle +++ b/stripe-ui-core/build.gradle @@ -40,12 +40,15 @@ dependencies { implementation libs.compose.material implementation libs.compose.ui implementation libs.compose.uiToolingPreview - implementation libs.dagger implementation libs.diskLruCache implementation libs.kotlin.coroutines implementation libs.kotlin.coroutinesAndroid implementation libs.kotlin.serialization + // DI + implementation libs.dagger + kapt libs.daggerCompiler + debugImplementation libs.compose.uiTestManifest debugImplementation libs.compose.uiTooling