forked from kizitonwose/Calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (42 loc) · 1.35 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
buildscript {
ext.versions = [
'min_sdk_library' : 17,
'min_sdk_sample' : 21,
'target_sdk' : 28,
'compile_sdk' : 28,
'version_code' : 1,
'version_name' : '0.0.1',
'kotlin_lang' : '1.3.30',
'material_library' : '1.0.0',
'androidx_appcompat' : '1.1.0-alpha05',
'androidx_legacy' : '1.0.0',
'androidx_core_ktx' : '1.2.0-alpha01',
'constraint_layout' : '1.1.3',
'cardview' : '1.0.0',
'recyclerview' : '1.1.0-alpha05',
'threetenabp' : '1.1.1',
'junit' : '4.12',
'espresso' : '3.1.1',
'androidx_test_runner': '1.1.1',
'androidx_test_rules' : '1.1.1',
'androidx_test_junit' : '1.1.0'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin_lang"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}