201be3e041
Resolves #13918
18 lines
418 B
Kotlin
18 lines
418 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(testFixtures(project(":libsignal-service")))
|
|
}
|