-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicit section for plugins in version catalog, use ksp when possible Investigate OTP after backup & restore Pass explicit dispatcher to repositories, fix unit tests. Ensure that opening the identity details will not trigger an update of the biometrics flag when binding gets executed. Update java & add proguard rules Update dependencies Use AGP 8.2.0 stable and remove retrofit sealed classes proguard rules
- Loading branch information
Iulia STANA
committed
Dec 7, 2023
1 parent
7757232
commit 5620385
Showing
25 changed files
with
972 additions
and
638 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,13 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
buildscript { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
classpath(libs.android.gradle) | ||
classpath(libs.kotlin.gradle) | ||
classpath(libs.dagger.hilt.gradle) | ||
classpath(libs.androidx.navigation.gradle) | ||
classpath(libs.google.gms.gradle) | ||
} | ||
} | ||
|
||
subprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
|
||
tasks.register("clean", Delete::class) { | ||
delete(rootProject.buildDir) | ||
plugins { | ||
alias(libs.plugins.android.application) apply false | ||
alias(libs.plugins.android.library) apply false | ||
alias(libs.plugins.kotlin.android) apply false | ||
alias(libs.plugins.safe.args) apply false | ||
//Try to avoid using KAPT, check if the library can work/supports KSP which is much faster. | ||
alias(libs.plugins.kapt) apply false | ||
//The plugin to use i.s.o. KAPT: https://developer.android.com/build/migrate-to-ksp | ||
alias(libs.plugins.ksp) apply false | ||
alias(libs.plugins.hilt) apply false | ||
alias(libs.plugins.google.gms.gradle) apply false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.