Sort new dependencies
This commit is contained in:
parent
87c653838e
commit
1cdaca1473
|
@ -131,7 +131,7 @@ ZCASH_EMULATOR_WTF_API_KEY=
|
|||
# Optional absolute path to a Zcash SDK checkout.
|
||||
# When blank, it pulls the SDK from Maven.
|
||||
# When set, it uses the path for a Gradle included build. Path can either be absolute or relative to the root of this app's Gradle project.
|
||||
SDK_INCLUDED_BUILD_PATH=/Users/milancerovsky/Developer/zcash/zcash-android-wallet-sdk
|
||||
SDK_INCLUDED_BUILD_PATH=
|
||||
|
||||
# When blank, it pulls the BIP-39 library from Maven.
|
||||
# When set, it uses the path for a Gradle included build. Path can either be absolute or relative to the root of this app's Gradle project.
|
||||
|
@ -193,13 +193,13 @@ KOTLINX_DATETIME_VERSION=0.5.0
|
|||
KOTLINX_IMMUTABLE_COLLECTIONS_VERSION=0.3.7
|
||||
KOTLINX_SERIALIZABLE_JSON_VERSION=1.6.3
|
||||
KOVER_VERSION=0.7.3
|
||||
LOTTIE_VERSION=6.5.0
|
||||
MARKDOWN_VERSION=0.7.3
|
||||
PLAY_APP_UPDATE_VERSION=2.1.0
|
||||
PLAY_APP_UPDATE_KTX_VERSION=2.1.0
|
||||
PLAY_PUBLISHER_API_VERSION=v3-rev20231030-2.0.0
|
||||
ZCASH_ANDROID_WALLET_PLUGINS_VERSION=1.0.0
|
||||
ZXING_VERSION=3.5.3
|
||||
LOTTIE_VERSION=6.5.0
|
||||
|
||||
ZCASH_BIP39_VERSION=1.0.8
|
||||
|
||||
|
|
|
@ -176,13 +176,13 @@ dependencyResolutionManagement {
|
|||
val kotlinxCoroutinesVersion = extra["KOTLINX_COROUTINES_VERSION"].toString()
|
||||
val kotlinxImmutableCollectionsVersion = extra["KOTLINX_IMMUTABLE_COLLECTIONS_VERSION"].toString()
|
||||
val kotlinxSerializableJsonVersion = extra["KOTLINX_SERIALIZABLE_JSON_VERSION"].toString()
|
||||
val lottieVersion = extra["LOTTIE_VERSION"].toString()
|
||||
val markdownVersion = extra["MARKDOWN_VERSION"].toString()
|
||||
val playAppUpdateVersion = extra["PLAY_APP_UPDATE_VERSION"].toString()
|
||||
val playAppUpdateKtxVersion = extra["PLAY_APP_UPDATE_KTX_VERSION"].toString()
|
||||
val zcashBip39Version = extra["ZCASH_BIP39_VERSION"].toString()
|
||||
val zcashSdkVersion = extra["ZCASH_SDK_VERSION"].toString()
|
||||
val zxingVersion = extra["ZXING_VERSION"].toString()
|
||||
val lottieVersion = extra["LOTTIE_VERSION"].toString()
|
||||
|
||||
// Standalone versions
|
||||
version("flank", flankVersion)
|
||||
|
@ -233,6 +233,7 @@ dependencyResolutionManagement {
|
|||
library("kotlinx-datetime", "org.jetbrains.kotlinx:kotlinx-datetime:$kotlinxDateTimeVersion")
|
||||
library("kotlinx-immutable", "org.jetbrains.kotlinx:kotlinx-collections-immutable:$kotlinxImmutableCollectionsVersion")
|
||||
library("kotlinx-serializable-json", "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinxSerializableJsonVersion")
|
||||
library("lottie", "com.airbnb.android:lottie-compose:$lottieVersion")
|
||||
library("markdown", "org.jetbrains:markdown:$markdownVersion")
|
||||
library("play-update", "com.google.android.play:app-update:$playAppUpdateVersion")
|
||||
library("play-update-ktx", "com.google.android.play:app-update-ktx:$playAppUpdateKtxVersion")
|
||||
|
@ -240,7 +241,6 @@ dependencyResolutionManagement {
|
|||
library("zcash-sdk-incubator", "cash.z.ecc.android:zcash-android-sdk-incubator:$zcashSdkVersion")
|
||||
library("zcash-bip39", "cash.z.ecc.android:kotlin-bip39:$zcashBip39Version")
|
||||
library("zxing", "com.google.zxing:core:$zxingVersion")
|
||||
library("lottie", "com.airbnb.android:lottie-compose:$lottieVersion")
|
||||
|
||||
// Test libraries
|
||||
library("androidx-compose-test-junit", "androidx.compose.ui:ui-test-junit4:$androidxComposeVersion")
|
||||
|
|
|
@ -107,11 +107,11 @@ dependencies {
|
|||
implementation(libs.kotlinx.datetime)
|
||||
implementation(libs.kotlinx.immutable)
|
||||
implementation(libs.kotlinx.serializable.json)
|
||||
implementation(libs.lottie)
|
||||
implementation(libs.zcash.sdk)
|
||||
implementation(libs.zcash.sdk.incubator)
|
||||
implementation(libs.zcash.bip39)
|
||||
implementation(libs.zxing)
|
||||
implementation(libs.lottie)
|
||||
|
||||
implementation(projects.buildInfoLib)
|
||||
implementation(projects.configurationApiLib)
|
||||
|
|
Loading…
Reference in New Issue