-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
39 lines (32 loc) · 1.01 KB
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.8.22"
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.4.1'
//classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
//classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0'
classpath 'com.google.gms:google-services:4.3.15'
}
}
plugins {
//id 'org.jetbrains.kotlin.android' version '1.8.22' apply false
//id 'com.google.devtools.ksp' version '1.8.22-1.0.11' apply false
id 'org.jetbrains.kotlin.android' version '1.8.22' apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}