-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
70 lines (56 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
buildscript {
ext {
Bintray = [
GROUP_ID : 'com.izikode.izilib',
REPO : 'izilib',
NAME : 'veinview',
DESCRIPTION : 'Custom WebView with build in CSS and JS injection capabilities',
WEBSITE : 'https://github.com/iFanie/VeinView',
GIT : 'https://github.com/iFanie/VeinView.git',
DEV_ID : 'iFanie',
DEV_NAME : 'Fanie Veizis',
DEV_EMAIL : 'fanieveizis@gmail.com',
LICENCE : 'The Apache Software License, Version 2.0',
LICENCE_URL : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
LICENCES : [ "Apache-2.0" ]
]
Version = [
Core : [
GRADLE : '3.2.1',
KOTLIN : '1.3.11'
],
Sdk : [
BASE : 28,
MIN : 19
],
Dependency : [
COMPAT : '28.0.0',
RECYCLER : '28.0.0'
],
Build : [
CODE : 2,
MAJOR : 0,
MINOR : 2
]
]
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${ Version.Core.GRADLE }"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${ Version.Core.KOTLIN }"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}