-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (19 loc) · 632 Bytes
/
Copy pathbuild.gradle
File metadata and controls
21 lines (19 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '2.2.10'
ext.support_lib_version = '36.0.0'
repositories {
google()
//jcenter()
mavenCentral()
maven { url 'https://jitpack.io' } // For libraries hosted on JitPack
}
dependencies {
classpath 'com.android.tools.build:gradle:9.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.4.4'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}