-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated to Version Catalog, Kotlin 2.0 and KSP
- Loading branch information
1 parent
5946f7e
commit cdc750d
Showing
5 changed files
with
271 additions
and
171 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,20 +1,20 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
//// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
alias(libs.plugins.android.application) apply false | ||
alias(libs.plugins.android.library) apply false | ||
alias(libs.plugins.kotlin.android) apply false | ||
id("com.google.devtools.ksp") version "2.0.20-1.0.24" apply false | ||
alias(libs.plugins.hilt.android) apply false | ||
alias(libs.plugins.google.services) apply false | ||
alias(libs.plugins.firebase.crashlytics) apply false | ||
alias(libs.plugins.firebase.perf) apply false | ||
alias(libs.plugins.compose.compiler) apply false | ||
} | ||
|
||
buildscript { | ||
val agp_version by extra("8.2.2") | ||
dependencies { | ||
classpath ("com.google.gms:google-services:4.4.1") | ||
classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7") | ||
classpath ("com.google.firebase:firebase-crashlytics-gradle:2.9.9") | ||
classpath(libs.google.services) | ||
classpath(libs.firebase.crashlytics.gradle) | ||
classpath(libs.navigation.safe.args.gradle.plugin) | ||
} | ||
} | ||
plugins { | ||
id ("com.android.application") version "8.2.2" apply false | ||
id ("com.android.library") version "8.0.2" apply false | ||
id ("org.jetbrains.kotlin.android") version "1.9.21" apply false | ||
id ("com.google.firebase.firebase-perf") version "1.4.2" apply false | ||
|
||
id ("com.google.dagger.hilt.android") version "2.49" apply false | ||
id ("com.google.gms.google-services") version "4.3.15" apply false | ||
id ("com.google.firebase.crashlytics") version "2.9.9" apply false | ||
// id 'com.gladed.androidgitversion' version '0.4.14' apply false | ||
} |
Oops, something went wrong.