This commit is contained in:
2023-11-13 14:23:33 +03:00
commit 4d842a9b42
148 changed files with 5990 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.3" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.google.gms.google-services") version "4.4.0" apply false
id("com.google.devtools.ksp") version "1.9.10-1.0.13" apply false
kotlin("kapt") version "1.9.10"
kotlin("jvm") version "1.9.10" apply false
}
buildscript {
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
dependencies {
classpath(kotlin("gradle-plugin", version = "1.9.10"))
classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.4")
classpath ("com.google.gms:google-services:4.4.0")
}
}