mirror of
https://github.com/micahflee/TM-SGNL-Android.git
synced 2025-09-03 16:04:24 +02:00
28 lines
446 B
Kotlin
28 lines
446 B
Kotlin
plugins {
|
|
id("signal-library")
|
|
id("com.squareup.wire")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.core.util"
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core-util-jvm"))
|
|
|
|
implementation(libs.androidx.sqlite)
|
|
|
|
testImplementation(testLibs.junit.junit)
|
|
testImplementation(testLibs.mockito.core)
|
|
testImplementation(testLibs.robolectric.robolectric)
|
|
}
|
|
|
|
wire {
|
|
kotlin {
|
|
javaInterop = true
|
|
}
|
|
|
|
sourcePath {
|
|
srcDir("src/main/protowire")
|
|
}
|
|
}
|