-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
39 lines (36 loc) · 934 Bytes
/
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
/*
* Copyright © Marc Auberer 2020-2022. All rights reserved
*/
buildscript {
ext {
libraryVersion = "$VERSION"
libraryVersionCode = Integer.parseInt(rootProject.properties["VERSION_CODE"])
kotlinVersion = '1.6.10'
composeVersion = '1.1.1'
}
repositories {
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:8.9.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.6.10'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}