Updated on 2026-08-14
This commit is contained in:
commit
5d79be79e5
6 changed files with 10 additions and 14 deletions
|
|
@ -184,8 +184,8 @@ dependencies {
|
|||
/** Other libraries */
|
||||
implementation(deps.kotlin.immutable.collections)
|
||||
implementation(deps.material)
|
||||
implementation(deps.googlePlay.core)
|
||||
implementation(deps.googlePlay.core.ktx)
|
||||
implementation(deps.googlePlay.review)
|
||||
implementation(deps.googlePlay.review.ktx)
|
||||
implementation(deps.googlePlay.services.wallet)
|
||||
coreLibraryDesugaring(deps.desugar)
|
||||
implementation(deps.timber)
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ private fun Content(config: NotificationConfig) {
|
|||
.align(Alignment.CenterVertically),
|
||||
)
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(TangemTheme.dimens.spacing4),
|
||||
verticalArrangement = Arrangement.spacedBy(TangemTheme.dimens.spacing2),
|
||||
modifier = Modifier
|
||||
.weight(1f)
|
||||
.padding(TangemTheme.dimens.spacing12),
|
||||
|
|
|
|||
|
|
@ -23,12 +23,8 @@ platform :android do
|
|||
|
||||
desc "Runs all the tests"
|
||||
lane :test do
|
||||
gradle(
|
||||
task: "clean assemble",
|
||||
build_type: "Debug"
|
||||
)
|
||||
gradle(task: "detekt")
|
||||
gradle(task: "test")
|
||||
gradle(task: "testDebugUnitTest")
|
||||
end
|
||||
|
||||
desc "Build a signed release APK"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ dependencies {
|
|||
|
||||
/** Other libraries */
|
||||
implementation(deps.arrow.core)
|
||||
implementation(deps.googlePlay.core)
|
||||
implementation(deps.googlePlay.review)
|
||||
implementation(deps.jodatime)
|
||||
implementation(deps.kotlin.immutable.collections)
|
||||
implementation(deps.reKotlin)
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@ package com.tangem.feature.wallet.presentation.wallet.ui.utils
|
|||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import android.content.ContextWrapper
|
||||
import com.google.android.gms.tasks.Task
|
||||
import com.google.android.play.core.review.ReviewInfo
|
||||
import com.google.android.play.core.review.ReviewManager
|
||||
import com.google.android.play.core.review.ReviewManagerFactory
|
||||
import com.google.android.play.core.tasks.Task
|
||||
import timber.log.Timber
|
||||
|
||||
internal object ReviewManagerRequester {
|
||||
|
|
|
|||
|
|
@ -46,8 +46,8 @@ coroutine = "1.7.2"
|
|||
desugarJdkLibs = "1.1.5"
|
||||
firebase = "26.0.0"
|
||||
googleMaterialComponent = "1.6.1"
|
||||
googlePlayCore = "1.10.3"
|
||||
googlePlayCoreKtx = "1.8.1"
|
||||
googlePlayReview = "2.0.1"
|
||||
googlePlayReviewKtx = "2.0.1"
|
||||
googlePlayServicesWallet = "19.1.0"
|
||||
hilt = "2.46"
|
||||
hilt-navigation = "1.0.0"
|
||||
|
|
@ -212,8 +212,8 @@ kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
|||
kotlin-coroutines-rx2 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-rx2", version.ref = "coroutine" }
|
||||
kotlin-immutable-collections = { module = "org.jetbrains.kotlinx:kotlinx-collections-immutable", version.ref = "kotlin-immutable-collections" }
|
||||
desugar = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugarJdkLibs" }
|
||||
googlePlay-core = { module = "com.google.android.play:core", version.ref = "googlePlayCore" }
|
||||
googlePlay-core-ktx = { module = "com.google.android.play:core-ktx", version.ref = "googlePlayCoreKtx" }
|
||||
googlePlay-review = { module = "com.google.android.play:review", version.ref = "googlePlayReview" }
|
||||
googlePlay-review-ktx = { module = "com.google.android.play:review-ktx", version.ref = "googlePlayReviewKtx" }
|
||||
googlePlay-services-wallet = { module = "com.google.android.gms:play-services-wallet", version.ref = "googlePlayServicesWallet" }
|
||||
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
|
||||
hilt-core = { module = "com.google.dagger:hilt-core", version.ref = "hilt" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue