Updated on 2026-08-14
This commit is contained in:
parent
e0f90419f4
commit
a6e04a4344
21 changed files with 540 additions and 359 deletions
30
build.gradle.kts
Normal file
30
build.gradle.kts
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue