-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (38 loc) · 1.15 KB
/
build.gradle
File metadata and controls
48 lines (38 loc) · 1.15 KB
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
buildscript {
ext {
organization = 'twocoders'
projectWebsite = 'https://github.com/Two-Coders/android-dynamic-componets/'
projectDescription = 'Project containing useful Dynamic components.'
projectLicences = ['MIT']
androidMinSdkVersion = 21
androidCompileSdkVersion = 30
androidTargerSdkVersion = androidCompileSdkVersion
libDynamicColorVersion = '1.0.0'
libDynamicTextVersion = '3.0.0'
kotlinVersion = '1.4.21'
androidXCoreVersion = '1.3.2'
annotationVersion = '1.1.0'
commonExtensionsVersion = '1.0.0'
junitVersion = '4.13.1'
androidTestRunnerVersion = '1.3.0'
androidJunitVersion = '1.1.2'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.github.panpf.bintray-publish:bintray-publish:1.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}