29 lines
725 B
Groovy
29 lines
725 B
Groovy
plugins {
|
|
id 'signal-library'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
android {
|
|
namespace 'org.signal.devicetransfer'
|
|
}
|
|
|
|
kapt {
|
|
arguments {
|
|
arg('eventBusIndex', 'org.signal.devicetransfer.TransferEventBusIndex')
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core-util')
|
|
implementation libs.libsignal.android
|
|
api libs.greenrobot.eventbus.core
|
|
kapt libs.greenrobot.eventbus.annotation
|
|
|
|
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")))
|
|
}
|