Updated on 2026-08-14

This commit is contained in:
Tangem 2022-11-11 13:54:04 +03:00
parent e0f90419f4
commit a6e04a4344
21 changed files with 540 additions and 359 deletions

30
build.gradle.kts Normal file
View file

@ -0,0 +1,30 @@
buildscript {
repositories {
google()
mavenCentral()
maven(url = "https://maven.fabric.io/public")
}
dependencies {
classpath(ClasspathDependency.AndroidGradlePlugin)
classpath(ClasspathDependency.KotlinGradlePlugin)
classpath(ClasspathDependency.AndroidMavenGradlePlugin)
classpath(ClasspathDependency.GoogleServices)
classpath(ClasspathDependency.GoogleFirebaseCrashlytics)
}
}
allprojects {
repositories {
google()
jcenter() // unable to replace with mavenCentral() due to rekotlin and com.otaliastudios:cameraview
mavenLocal()
maven("https://nexus.tangem-tech.com/repository/maven-releases/")
maven("https://jitpack.io")
maven("https://zendesk.jfrog.io/zendesk/repo")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}