mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-22 03:58:48 +00:00
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
21 lines
468 B
Kotlin
21 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")))
|
|
}
|