mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-02 00:17:41 +01:00
28 lines
452 B
Kotlin
28 lines
452 B
Kotlin
plugins {
|
|
id("signal-library")
|
|
id("com.squareup.wire")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.archive"
|
|
}
|
|
|
|
wire {
|
|
kotlin {
|
|
javaInterop = true
|
|
}
|
|
|
|
sourcePath {
|
|
srcDir("src/main/protowire")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:util"))
|
|
implementation(project(":core:models-jvm"))
|
|
implementation(project(":lib:libsignal-service"))
|
|
|
|
implementation(libs.libsignal.android)
|
|
implementation(libs.google.guava.android)
|
|
}
|