22 lines
528 B
Text
22 lines
528 B
Text
|
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.robolectric.shadows.multidex)
|
||
|
testImplementation(testLibs.hamcrest.hamcrest)
|
||
|
|
||
|
testImplementation(testFixtures(project(":libsignal-service")))
|
||
|
}
|