Skip to content

Commit

Permalink
AND-7226 Changes for markets details screen
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterBin committed Jun 3, 2024
1 parent f3fa901 commit a012369
Show file tree
Hide file tree
Showing 11 changed files with 1,032 additions and 103 deletions.
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ appcompat = "1.7.0"
composeBom = "2024.05.00"
composeNavigation = "2.7.7"
coroutines = "1.8.1"
desugar_jdk_libs = "2.0.4"
dokka = "1.9.20"
jUnit = "4.13.2"
jUnitExt = "1.1.5"
Expand Down Expand Up @@ -35,6 +36,7 @@ composeUI = { group = "androidx.compose.ui", name = "ui" }
composeUITooling = { group = "androidx.compose.ui", name = "ui-tooling" }
composeViewBinding = { group = "androidx.compose.ui", name = "ui-viewbinding" }
coroutinesCore = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutines" }
desugarJdkLibs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugar_jdk_libs" }
jUnit = { module = "junit:junit", version.ref = "jUnit" }
jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "jupiter" }
jupiterParams = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "jupiter" }
Expand Down
7 changes: 2 additions & 5 deletions tangem-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
coreLibraryDesugaringEnabled true
}

kotlinOptions {
Expand All @@ -58,10 +59,10 @@ android {
dependencies {
implementation project(":vico:compose-m3")
implementation platform(libs.composeBom)
coreLibraryDesugaring(libs.desugarJdkLibs)
implementation libs.activityCompose
implementation libs.androidXCore
implementation libs.appcompat
implementation libs.composeMaterial
implementation libs.composeMaterial3
implementation libs.composeNavigation
implementation libs.composePreview
Expand All @@ -74,8 +75,4 @@ dependencies {
implementation libs.material
implementation libs.systemUIController
implementation libs.viewModelCompose
debugImplementation libs.composeUITooling
testImplementation libs.JUnit
testImplementation libs.JUnitExt
testImplementation libs.kotlinTest
}
Loading

0 comments on commit a012369

Please sign in to comment.