forked from denzilferreira/aware-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (42 loc) · 1.13 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
mqtt_libs = '1.2.2'
ion_libs = "2.+"
google_libs = "17.0.0"
version_code = 817
version_readable = "4.0." + version_code + "." + "bundle"
compile_sdk = 28
target_sdk = 28
minimum_sdk = 24
build_tools = "28.0.3"
aware_libs = "master-SNAPSHOT"
kotlin_version = '1.3.71'
build_gradle = '3.6.2'
anko_version = "0.10.8"
}
repositories {
maven {
url 'https://maven.google.com'
}
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "com.android.tools.build:gradle:${build_gradle}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
maven {
url 'https://maven.google.com'
}
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" } //MPAndroidChart, AWARE
}
}