forked from natario1/Firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
42 lines (35 loc) · 1.03 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
/*
* Copyright (c) 2018 Otalia Studios. Author: Mattia Iavarone.
*/
buildscript {
extra["libDescription"] = "The efficient wrapper for Firestore model data."
extra["libVersion"] = "0.6.0"
extra["libGroup"] = "com.otaliastudios"
extra["githubUrl"] = "https://github.com/natario1/Firestore"
extra["githubGit"] = "https://github.com/natario1/Firestore.git"
extra["minSdkVersion"] = 16
extra["compileSdkVersion"] = 29
extra["targetSdkVersion"] = 29
extra["kotlinVersion"] = "1.3.61"
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
val kotlinVersion = property("kotlinVersion") as String
classpath("com.android.tools.build:gradle:3.6.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.otaliastudios.tools:publisher:0.1.5")
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
tasks.register("clean", Delete::class) {
delete(buildDir)
}