-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
46 lines (40 loc) · 1.39 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '1.7.20'
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// these are not release numbers. release numbers are in deploy.settings files.
ext.ver = [
"hmkit-crypto" : "1.4.6",
"hmkit-utils" : "1.4.5",
"hmkit-android" : "2.0.9",
"hmkit-auto-api" : "13.1.1",
"command-queue" : "1.1.0",
compileSdk : 28
]
ext.deps = [
"hmkit" : "com.high-mobility:hmkit-android:${ver."hmkit-android"}@aar",
"crypto" : "com.high-mobility:hmkit-crypto:${ver."hmkit-crypto"}",
"utils" : "com.high-mobility:hmkit-utils:${ver."hmkit-utils"}",
"autoApi" : "com.high-mobility:hmkit-auto-api:${ver."hmkit-auto-api"}",
"commandQueue" : "com.high-mobility:command-queue:${ver."command-queue"}",
"timber" : "com.jakewharton.timber:timber:4.7.1",
"volley" : "com.android.volley:volley:1.2.0",
"findBugs": 'com.google.code.findbugs:jsr305:3.0.2'
]