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