-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuild.gradle
48 lines (39 loc) · 1.32 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
buildscript {
project.ext {
kotlin_version = '1.4.32'
compileSdkVersion = 30
targetSdkVersion = 30
minSdkVersion = 18
versionName = '1.0.3'
versionCode = 10003
libraryName = 'SnapTimePicker'
libraryDescription = 'Another Material Time Picker for developer who do not like default Material Time Picker that difficult to use for most users'
groupId = 'com.akexorcist'
artifactId = 'snap-time-picker'
siteUrl = 'https://github.com/akexorcist/Android-SnapTimePicker'
gitUrl = 'https://github.com/akexorcist/Android-SnapTimePicker.git'
developerId = 'akexorcist'
developName = 'Somkiat Khitwongwattana'
developerEmail = 'akexorcist@gmail.com'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$project.kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}