-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): update dependencies and Gradle settings (#312)
- Replace plugin IDs with versions from libs.versions.toml. - Update compileSdk to 34. - Update various dependencies to their latest versions. - Modify onDraw method arguments to be non-nullable. - Refactor build scripts to align with new dependency management practices. # GENERATE BY https://aicommit.app
- Loading branch information
Showing
16 changed files
with
375 additions
and
143 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
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
Binary file not shown.
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,45 +1,39 @@ | ||
buildscript { | ||
|
||
repositories { | ||
google() | ||
mavenCentral() | ||
maven("https://jitpack.io") | ||
maven("https://plugins.gradle.org/m2/") | ||
google() | ||
gradlePluginPortal() | ||
} | ||
|
||
dependencies { | ||
classpath("com.android.tools.build:gradle:8.1.0") | ||
classpath(libs.kotlin.plugin) | ||
classpath(libs.ktlint.gradle) | ||
classpath(libs.dagger.hilt.plugin) | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
classpath(libs.agp) | ||
classpath(libs.kotlin.gradlePlugin) | ||
classpath(libs.hilt.plugin) | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven("https://jitpack.io") | ||
} | ||
} | ||
|
||
tasks.register("clean", Delete::class) { | ||
delete(rootProject.buildDir) | ||
} | ||
|
||
apply(plugin = "org.jlleitschuh.gradle.ktlint") | ||
|
||
subprojects { | ||
apply(plugin = "org.jlleitschuh.gradle.ktlint") // Version should be inherited from parent | ||
//apply(plugin = "org.jlleitschuh.gradle.ktlint") | ||
// | ||
//subprojects { | ||
// apply(plugin = "org.jlleitschuh.gradle.ktlint") // Version should be inherited from parent | ||
// | ||
// repositories { | ||
// // Required to download KtLint | ||
// mavenCentral() | ||
// } | ||
// | ||
// // Optionally configure plugin | ||
// configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> { | ||
// debug.set(true) | ||
// } | ||
//} | ||
|
||
repositories { | ||
// Required to download KtLint | ||
mavenCentral() | ||
} | ||
|
||
// Optionally configure plugin | ||
configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> { | ||
debug.set(true) | ||
} | ||
plugins { | ||
alias(libs.plugins.hilt) apply false | ||
alias(libs.plugins.ksp) 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
Oops, something went wrong.