forked from floschu/Reaktor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (32 loc) · 853 Bytes
/
build.gradle
File metadata and controls
41 lines (32 loc) · 853 Bytes
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
buildscript {
ext.config = [
version : "1.1.0",
targetSdkVersion : 29,
minSdkVersion : 14,
compileSdkVersion: 29
]
repositories {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "de.fayard:buildSrcVersions:0.4.2"
classpath Libs.com_android_tools_build_gradle
classpath Libs.kotlin_gradle_plugin
classpath Libs.dokka_android_gradle_plugin
classpath Libs.gradle_bintray_plugin
classpath Libs.android_maven_gradle_plugin
}
}
apply plugin: "de.fayard.buildSrcVersions"
allprojects {
apply from: "$rootDir/ktlint.gradle"
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}