Converted all minor modules to .gradle.kts.

This commit is contained in:
Greyson Parrelli
2023-11-26 12:18:03 -05:00
committed by Cody Henthorne
parent d77744c562
commit 766733617e
36 changed files with 312 additions and 311 deletions
-21
View File
@@ -1,21 +0,0 @@
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")))
}
+21
View File
@@ -0,0 +1,21 @@
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")))
}