b340097f9c
Since the min SDK is at least 21, it is no longer necessary to use the Multidex library. See the following for more info: https://developer.android.com/build/multidex#mdex-on-l Resolves #13696
20 lines
468 B
Kotlin
20 lines
468 B
Kotlin
plugins {
|
|
id("signal-library")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.devicetransfer"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core-util"))
|
|
implementation(libs.libsignal.android)
|
|
api(libs.greenrobot.eventbus)
|
|
|
|
testImplementation(testLibs.robolectric.robolectric) {
|
|
exclude(group = "com.google.protobuf", module = "protobuf-java")
|
|
}
|
|
testImplementation(testLibs.hamcrest.hamcrest)
|
|
|
|
testImplementation(testFixtures(project(":libsignal-service")))
|
|
}
|