-
Notifications
You must be signed in to change notification settings - Fork 44
/
build.gradle
56 lines (47 loc) · 1.48 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
plugins {
id("com.android.library") version("7.1.0")
}
android {
ndkVersion = "26.1.10909125"
compileSdkVersion = "android-32"
defaultConfig {
minSdkVersion(29)
multiDexEnabled true
ndk.stl = "c++_shared"
}
buildTypes {
release {
ndk.abiFilters.add("arm64-v8a")
}
debug {
ndk.abiFilters.add("arm64-v8a")
}
}
externalNativeBuild {
ndkBuild {
path(file("src/main/jni/Android.mk"))
}
}
buildToolsVersion = "30.0.3"
}
build {
//finalizedBy(':wrapper:launcher:build')
}
dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api("org.apache.commons:commons-math3:3.6.1")
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation("com.google.guava:guava:31.0.1-jre")
}
dependencies {
implementation("org.jetbrains:annotations:24.0.1")
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.json:json:20220924")
implementation("commons-io:commons-io:2.13.0")
implementation("commons-codec:commons-codec:1.15")
implementation("androidx.annotation:annotation:1.7.1")
implementation("androidx.core:core:1.13.1")
implementation("com.microsoft.azure:msal4j:1.14.0")
implementation("com.github.Mathias-Boulay:android_gamepad_remapper:2.0.3")
implementation("blank:unity-classes")
}