2023-11-26 12:18:03 -05:00
|
|
|
plugins {
|
|
|
|
id("signal-library")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "org.signal.video"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core-util"))
|
2024-01-12 19:11:54 -05:00
|
|
|
implementation(libs.libsignal.android)
|
|
|
|
implementation(libs.google.guava.android)
|
2023-11-26 12:18:03 -05:00
|
|
|
|
|
|
|
implementation(libs.bundles.mp4parser) {
|
|
|
|
exclude(group = "junit", module = "junit")
|
|
|
|
}
|
|
|
|
}
|