mirror of
https://github.com/mollyim/mollyim-insider-android.git
synced 2025-05-13 05:40:53 +01:00
28 lines
446 B
Text
28 lines
446 B
Text
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")
|
|
}
|
|
}
|