mirror of
https://github.com/bitwarden/android.git
synced 2025-02-16 11:59:57 +03:00
BITAU-165 add kotlinx serialization dependency to bridge (#3877)
This commit is contained in:
parent
3f78ad6d6d
commit
47fe78536f
2 changed files with 18 additions and 2 deletions
|
@ -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
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue