mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2026-01-25 21:14:06 +01:00
29 lines
1.0 KiB
Kotlin
29 lines
1.0 KiB
Kotlin
dependencies {
|
|
// Android stub library
|
|
implementation(fileTree("lib/"))
|
|
|
|
// XML
|
|
compileOnly("xmlpull:xmlpull:1.1.3.4a")
|
|
|
|
// Config API
|
|
implementation(project(":AndroidCompat:Config"))
|
|
|
|
// APK sig verifier
|
|
compileOnly("com.android.tools.build:apksig:7.1.0-alpha12")
|
|
|
|
// AndroidX annotations
|
|
compileOnly("androidx.annotation:annotation:1.2.0")
|
|
|
|
// substitute for duktape-android
|
|
implementation("org.mozilla:rhino-runtime:1.7.13") // slimmer version of 'org.mozilla:rhino'
|
|
implementation("org.mozilla:rhino-engine:1.7.13") // provides the same interface as 'javax.script' a.k.a Nashorn
|
|
|
|
// Kotlin wrapper around Java Preferences, makes certain things easier
|
|
val multiplatformSettingsVersion = "0.8"
|
|
implementation("com.russhwolf:multiplatform-settings-jvm:$multiplatformSettingsVersion")
|
|
implementation("com.russhwolf:multiplatform-settings-serialization-jvm:$multiplatformSettingsVersion")
|
|
|
|
// Android version of SimpleDateFormat
|
|
implementation("com.ibm.icu:icu4j:69.1")
|
|
}
|