-
-
Notifications
You must be signed in to change notification settings - Fork 23
feat: update gradle dependencies, upgrade maplibre native android to 12.2.+
#413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,10 +12,10 @@ buildscript { | |||||
| } | ||||||
|
|
||||||
| dependencies { | ||||||
| classpath("com.android.tools.build:gradle:8.12.3") | ||||||
| classpath("com.android.tools.build:gradle:8.13.1") | ||||||
| classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") | ||||||
| // noinspection GradleDynamicVersion | ||||||
| classpath("org.jlleitschuh.gradle:ktlint-gradle:13.1.+") | ||||||
| classpath("org.jlleitschuh.gradle:ktlint-gradle:14.0.+") | ||||||
|
||||||
| } | ||||||
| } | ||||||
|
|
||||||
|
|
@@ -67,7 +67,7 @@ android { | |||||
|
|
||||||
| dependencies { | ||||||
| // jnigen picks up api dependencies | ||||||
| api 'org.maplibre.gl:android-sdk:12.0.+' | ||||||
| api 'org.maplibre.gl:android-sdk:12.2.+' | ||||||
|
||||||
| api 'org.maplibre.gl:android-sdk:12.2.+' | |
| api 'org.maplibre.gl:android-sdk:12.2.3' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a dynamic plugin version
org.jlleitschuh.gradle.ktlint:14.0.+is a supply-chain risk and security misconfiguration. A compromised or unstable future14.0.xrelease could be pulled into builds, potentially executing malicious code or breaking CI. Pin to an exact version (e.g.,14.0.1) and enable dependency locking to ensure reproducible, secure builds.