mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-09-20 16:54:28 +01:00
45 lines
1.1 KiB
Kotlin
45 lines
1.1 KiB
Kotlin
plugins {
|
|
id("signal-library")
|
|
alias(libs.plugins.compose.compiler)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.appsettings"
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
isIncludeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
lintChecks(project(":lintchecks"))
|
|
|
|
// Project dependencies
|
|
implementation(project(":core:ui"))
|
|
implementation(project(":core:util"))
|
|
|
|
// Compose BOM
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
|
// Compose dependencies
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
debugImplementation(libs.androidx.compose.ui.tooling.core)
|
|
|
|
// Testing
|
|
testImplementation(testLibs.junit.junit)
|
|
testImplementation(testLibs.assertk)
|
|
testImplementation(testLibs.kotlinx.coroutines.test)
|
|
testImplementation(testLibs.robolectric.robolectric)
|
|
testImplementation(libs.androidx.compose.ui.test.junit4)
|
|
|
|
// Supplies the ComponentActivity that createComposeRule() launches the screen into
|
|
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
|
}
|