aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-05-19 21:33:37 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-05-20 23:50:39 +0530
commite05c704539648af957ee89c870b0a71b7be12b26 (patch)
treec5b487684881005b7255db368ec0ec84dd930c8c /app/build.gradle.kts
parent6b8ca1601d0668125071839d9f10912d765460ad (diff)
refactor(build): sync Gradle properties set with current AGP
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts11
1 files changed, 5 insertions, 6 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index c6ca5871..6bcfbdc6 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -22,6 +22,7 @@ crowdin {
android {
compileOptions { isCoreLibraryDesugaringEnabled = true }
+ namespace = "app.passwordstore"
defaultConfig {
applicationId = "app.passwordstore"
@@ -30,13 +31,11 @@ android {
buildFeatures {
compose = true
- composeOptions {
- useLiveLiterals = false
- kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
- }
}
-
- namespace = "app.passwordstore"
+ composeOptions {
+ useLiveLiterals = false
+ kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
+ }
}
dependencies {