mirror of
https://github.com/micahflee/TM-SGNL-Android.git
synced 2025-09-05 00:44:22 +02:00
18 lines
352 B
Kotlin
18 lines
352 B
Kotlin
plugins {
|
|
id("signal-library")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.spinner"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core-util"))
|
|
|
|
implementation(libs.jknack.handlebars)
|
|
implementation(libs.nanohttpd.webserver)
|
|
implementation(libs.nanohttpd.websocket)
|
|
implementation(libs.androidx.sqlite)
|
|
|
|
testImplementation(testLibs.junit.junit)
|
|
}
|