-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.27 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
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_compiler_extension_version = "1.5.1"
// repositories {
// jcenter()
// mavenCentral()
// google()
// maven {
// url "https://maven.zohodl.com/"
// }
// }
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta10'
classpath("org.jetbrains.kotlin:kotlin-serialization:1.9.0")
}
}
plugins {
id("com.android.application") version "8.1.0" apply false
id("com.android.library") version "8.1.0" apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version "1.9.0" apply false
id 'com.google.gms.google-services' version "4.3.14" apply false
}
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.kotlin.plugin.serialization'
//
//task clean(type: Delete) {
// delete rootProject.buildDir
//}
task comps {
afterEvaluate {
println("Components: " + components*.name)
}
}