Signal-Android/device-transfer/lib/build.gradle.kts
Gaëtan Muller b340097f9c Remove Multidex usages.
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
2024-09-20 10:52:18 -04:00

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")))
}