Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-23 14:37:50 +03:00
commit 2f84def7cc
1244 changed files with 20573 additions and 7307 deletions

View file

@ -38,6 +38,7 @@ dependencyResolutionManagement {
mavenLocal {
content {
includeGroupAndSubgroups("com.tangem.tangem-sdk-kotlin")
includeGroupAndSubgroups("com.tangem.tangem-hot-sdk-kotlin")
includeGroupAndSubgroups("com.tangem.vico")
includeModule("com.tangem", "blstlib")
includeModule("com.tangem", "blockchain")
@ -54,6 +55,15 @@ dependencyResolutionManagement {
}
content { includeGroupAndSubgroups("com.tangem.tangem-sdk-kotlin") }
}
maven {
// setting any repository from tangem project allows maven search all packages in the project
url = uri("https://maven.pkg.github.com/tangem/tangem-hot-sdk-kotlin")
credentials {
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
content { includeGroupAndSubgroups("com.tangem.tangem-hot-sdk-kotlin") }
}
maven {
// setting any repository from tangem project allows maven search all packages in the project
url = uri("https://maven.pkg.github.com/tangem/blst-android")
@ -146,8 +156,6 @@ include(":core:navigation")
include(":core:res")
include(":core:ui")
include(":core:utils")
include(":core:deep-links")
include(":core:deep-links:global")
include(":core:decompose")
include(":core:pagination")
include(":core:error")