-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
73 lines (59 loc) · 1.88 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
71
72
73
buildscript {
ext {
Bintray = [
GROUP_ID: 'com.izikode.izilib',
REPO: 'izilib',
NAME: 'roguin',
DESCRIPTION: 'One-stop-shop for Social Network integrations',
WEBSITE: 'https://github.com/iFanie/Roguin',
GIT: 'https://github.com/iFanie/Roguin.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 = [
Build : [
CODE : 3,
MAJOR : 0,
MINOR : 3
],
Core : [
JAVA : '1.8',
GRADLE : '3.2.1',
KOTLIN : '1.3.11'
],
Sdk : [
BASE : 28,
MIN : 15,
COMPAT : '28.0.0'
],
Network : [
GOOGLE : '15.0.1',
FACEBOOK : '4.35.0',
TWITTER : '3.3.0@aar'
]
]
}
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
}