-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathbuild.gradle
49 lines (40 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
47
48
49
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
project.ext {
kotlin_version = '1.4.32'
compileSdkVersion = 30
targetSdkVersion = 30
minSdkVersion = 16
versionName = '1.2.1'
versionCode = 10201
libraryName = 'Google Direction Library'
libraryDescription = 'Google Direction API for Android'
groupId = 'com.akexorcist'
artifactId = 'google-direction-library'
siteUrl = 'https://github.com/akexorcist/Android-GoogleDirectionLibrary'
gitUrl = 'https://github.com/akexorcist/Android-GoogleDirectionLibrary.git'
developerId = 'akexorcist'
developName = 'Somkiat Khitwongwattana'
developerEmail = '[email protected]'
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
}