-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (31 loc) · 780 Bytes
/
build.gradle
File metadata and controls
33 lines (31 loc) · 780 Bytes
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
buildscript {
ext {
// Android Gradle plugin
gradleVersion = '7.0.1'
// Kotlin
kotlinVersion = '1.5.30'
// Jetpack Navigation (+ Safe-Args)
navigationVersion = '2.3.5'
}
repositories {
google()
jcenter()
}
dependencies {
// Android Gradle plugin
classpath "com.android.tools.build:gradle:$gradleVersion"
// Kotlin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// Jetpack Navigation Safe-Args
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}