mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-15 07:28:30 +00:00
18 lines
319 B
Kotlin
18 lines
319 B
Kotlin
plugins {
|
|
id("signal-library")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.video"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:util"))
|
|
implementation(libs.libsignal.android)
|
|
implementation(libs.google.guava.android)
|
|
|
|
implementation(libs.bundles.mp4parser) {
|
|
exclude(group = "junit", module = "junit")
|
|
}
|
|
}
|