mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-15 07:28:30 +00:00
18 lines
322 B
Kotlin
18 lines
322 B
Kotlin
plugins {
|
|
id("signal-sample-app")
|
|
alias(libs.plugins.compose.compiler)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.debuglogsviewer.app"
|
|
|
|
defaultConfig {
|
|
applicationId = "org.signal.debuglogsviewer.app"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib:debuglogs-viewer"))
|
|
implementation(project(":core:util"))
|
|
}
|