forked from Gridstone/DebugDrawer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (48 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
ext.versions = [
'compile_sdk' : 31,
'min_sdk' : 21,
'android_gradle_plugin' : '4.1.1',
'kotlin' : '1.6.20',
'maven_publish_plugin' : '0.19.0',
'dokka' : '1.4.20',
'coroutines' : '1.6.1',
'appcompat' : '1.2.0',
'androidx_core' : '1.3.2',
'drawerlayout' : '1.1.1',
'material' : '1.2.1',
'lifecycle' : '2.2.0',
'leakcanary' : '2.8.1',
'moshi' : '1.11.0',
'okhttp' : '4.9.0',
'retrofit' : '2.9.0',
'coil' : '1.1.0',
'process_phoenix' : '2.0.0',
'timber' : '4.7.1'
]
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${versions.android_gradle_plugin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "com.vanniktech:gradle-maven-publish-plugin:${versions.maven_publish_plugin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
}
plugins {
id 'org.jetbrains.changelog' version '1.3.1'
}
apply plugin: 'org.jetbrains.changelog'
allprojects {
repositories {
google()
mavenCentral()
}
group = GROUP
version = VERSION_NAME
}
task clean(type: Delete) {
delete rootProject.buildDir
}