forked from Rsplwe/ESurfingDialer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
35 lines (30 loc) · 979 Bytes
/
build.gradle.kts
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
plugins {
kotlin("jvm") version "2.0.20"
id("com.gradleup.shadow") version "8.3.1"
application
}
group = "com.rsplwe.esurfing"
version = "1.6.0"
repositories {
mavenCentral()
maven(url = "https://jitpack.io")
}
dependencies {
implementation("com.github.zhkl0228:unicorn:1.0.14")
implementation("com.github.zhkl0228:unidbg-android:0.9.8")
implementation("com.github.zhkl0228:unidbg-api:0.9.8")
implementation("com.github.zhkl0228:unidbg-dynarmic:0.9.8")
implementation("org.slf4j:slf4j-log4j12:2.0.16")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("com.github.yescallop:fluent-uri:d8e12f23af")
implementation("commons-cli:commons-cli:1.9.0")
implementation("commons-codec:commons-codec:1.17.1")
implementation("org.jsoup:jsoup:1.18.1")
implementation("com.google.code.gson:gson:2.11.0")
}
kotlin {
jvmToolchain(21)
}
application {
mainClass.set("com.rsplwe.esurfing.DialerApp")
}