2021-09-16 11:18:54 -03:00
|
|
|
plugins {
|
2023-11-26 12:18:03 -05:00
|
|
|
id("signal-sample-app")
|
2024-01-24 02:54:09 -06:00
|
|
|
id("com.google.devtools.ksp")
|
2021-09-16 11:18:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-11-26 12:18:03 -05:00
|
|
|
namespace = "org.signal.imageeditor.app"
|
2023-02-11 15:35:01 -05:00
|
|
|
|
2021-09-16 11:18:54 -03:00
|
|
|
defaultConfig {
|
2023-11-26 12:18:03 -05:00
|
|
|
applicationId = "org.signal.imageeditor.app"
|
2021-09-16 11:18:54 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-26 12:18:03 -05:00
|
|
|
implementation(project(":image-editor"))
|
2021-09-16 11:18:54 -03:00
|
|
|
|
2023-11-26 12:18:03 -05:00
|
|
|
implementation(libs.glide.glide)
|
2024-01-24 02:54:09 -06:00
|
|
|
ksp(libs.glide.ksp)
|
|
|
|
}
|