-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
51 lines (44 loc) · 1.47 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
buildscript {
ext.kotlinVersion = '1.7.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
id 'net.researchgate.release' version '3.0.2' // for auto-api-java
}
allprojects {
repositories {
google()
mavenCentral()
}
}
// 0 local dependencies
// 1 remote dependencies
ext.depLocation = 0
// dependency versions. also used in release script
ext.ver = [
"hmkit-core-jni" : "1.0.2",
"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.1",
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"}",
"corejni" : "com.high-mobility:hmkit-core-jni:${ver."hmkit-core-jni"}",
"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'
]