Updated on 2026-08-14
This commit is contained in:
parent
c21421f5d5
commit
df066bbbfd
3 changed files with 45 additions and 9 deletions
|
|
@ -85,7 +85,7 @@ decompose = "2.2.2"
|
|||
# endregion Other libraries
|
||||
|
||||
# region Tangem
|
||||
tangemBlockchainSdk = "develop-601"
|
||||
tangemBlockchainSdk = "develop-603"
|
||||
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
|
||||
tangemCardSdk = "develop-346"
|
||||
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
ext.jitpackSdk = [
|
||||
group: 'com.github.Tangem',
|
||||
version : '0.2.1',
|
||||
]
|
||||
|
|
@ -24,11 +24,41 @@ dependencyResolutionManagement {
|
|||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
|
||||
repositories {
|
||||
google()
|
||||
google {
|
||||
content {
|
||||
includeGroupAndSubgroups("androidx")
|
||||
includeGroupAndSubgroups("com.android")
|
||||
includeGroupAndSubgroups("com.google")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
mavenLocal()
|
||||
jcenter() // unable to replace with mavenCentral() due to rekotlin
|
||||
maven("https://nexus.tangem-tech.com/repository/maven-releases/")
|
||||
mavenLocal {
|
||||
content {
|
||||
includeGroupAndSubgroups("com.tangem.tangem-sdk-kotlin")
|
||||
includeModule("com.tangem", "blstlib")
|
||||
includeModule("com.tangem", "blockchain")
|
||||
includeModule("com.tangem", "wallet-core-proto")
|
||||
includeModule("com.tangem", "wallet-core")
|
||||
}
|
||||
}
|
||||
maven {
|
||||
// setting any repository from tangem project allows maven search all packages in the project
|
||||
url = uri("https://maven.pkg.github.com/tangem/tangem-sdk-android")
|
||||
credentials {
|
||||
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
|
||||
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
|
||||
}
|
||||
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/blst-android")
|
||||
credentials {
|
||||
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
|
||||
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
|
||||
}
|
||||
content { includeModule("com.tangem", "blstlib") }
|
||||
}
|
||||
maven {
|
||||
// setting any repository from tangem project allows maven search all packages in the project
|
||||
url = uri("https://maven.pkg.github.com/tangem/blockchain-sdk-kotlin")
|
||||
|
|
@ -36,6 +66,7 @@ dependencyResolutionManagement {
|
|||
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
|
||||
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
|
||||
}
|
||||
content { includeModule("com.tangem", "blockchain") }
|
||||
}
|
||||
maven {
|
||||
// setting any repository from tangem project allows maven search all packages in the project
|
||||
|
|
@ -44,6 +75,15 @@ dependencyResolutionManagement {
|
|||
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
|
||||
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
|
||||
}
|
||||
content {
|
||||
includeModule("com.tangem", "wallet-core-proto")
|
||||
includeModule("com.tangem", "wallet-core")
|
||||
}
|
||||
}
|
||||
jcenter { // unable to replace with mavenCentral() due to rekotlin
|
||||
content {
|
||||
includeModule("org.rekotlin", "rekotlin")
|
||||
}
|
||||
}
|
||||
maven("https://jitpack.io")
|
||||
maven("https://clients-nexus.sprinklr.com/")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue