diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-19 21:33:37 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-20 23:50:39 +0530 |
commit | e05c704539648af957ee89c870b0a71b7be12b26 (patch) | |
tree | c5b487684881005b7255db368ec0ec84dd930c8c /app/build.gradle.kts | |
parent | 6b8ca1601d0668125071839d9f10912d765460ad (diff) |
refactor(build): sync Gradle properties set with current AGP
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 11 |
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 { |