BITAU-165 add kotlinx serialization dependency to bridge (#3877)

This commit is contained in:
Andrew Haisting 2024-09-06 15:28:29 -05:00 committed by GitHub
parent 3f78ad6d6d
commit 47fe78536f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 2 deletions

View file

@ -4,6 +4,7 @@
- [Compatibility](#compatibility)
- [Versioning](#versioning)
- [Dependencies](#dependencies)
## Other Documents
@ -33,4 +34,18 @@ Some things to note:
- All updates should have a corresponding `CHANGELOG.md` entry that at a high-level describes what is being newly introduced in it. For more info, see [Changelog Format Guide](CHANGELOG_FORMAT.MD)
- When incrementing a level any lower-levels should always reset to 0.
- When incrementing a level any lower-levels should always reset to 0.
## Dependencies
### Application Dependencies
The following is a list of all third-party dependencies required by the SDK.
> [!IMPORTANT]
> The SDK does not come packaged with these dependencies, so consumers of the SDK must provide them.
- **kotlinx.serialization**
- https://github.com/Kotlin/kotlinx.serialization/
- Purpose: JSON serialization library for Kotlin.
- License: Apache 2.0

View file

@ -7,6 +7,7 @@ plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.parcelize)
alias(libs.plugins.kotlin.serialization)
}
android {
@ -48,5 +49,5 @@ kotlin {
}
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.kotlinx.serialization)
}