7d5786ea93
This is basically a location where we can put common utils that can also be imported by libsignal-service (which is java-only, no android dependency).
29 lines
No EOL
491 B
Groovy
29 lines
No EOL
491 B
Groovy
plugins {
|
|
id 'signal-library'
|
|
id 'kotlin-kapt'
|
|
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'
|
|
}
|
|
} |