-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
executable file
·51 lines (49 loc) · 1.66 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//buildscript {
// repositories {
// google()
// mavenCentral()
// }
// dependencies {
// def nav_version = "2.4.2"
// classpath 'com.android.tools.build:gradle:7.0.4'
// classpath 'com.google.gms:google-services:4.4.1'
// classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
// classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.0'
// classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version")
//
// // NOTE: Do not place your application dependencies here; they belong
// // in the individual module build.gradle files
// }
//}
//allprojects {
// repositories {
// google()
// maven { url 'https://jitpack.io' }
// jcenter()
// }
//}
//
//task clean(type: Delete) {
// delete rootProject.buildDir
//}
//plugins{
// id("com.android.application") version "8.2.2" apply false
// id("org.jetbrains.kotlin.android") version "1.9.21" apply false
//}
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
val nav_version = "2.5.0"
classpath("com.android.tools.build:gradle:8.2.2")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
classpath("com.google.gms:google-services:4.4.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.9")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version")
}
}