Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions FireMarkers/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
// providing dependencies to different parts of the application.
// ---------------------------------------------------------------------------------------------
implementation(libs.dagger)
ksp("org.jetbrains.kotlin:kotlin-metadata-jvm:2.4.0")

Check warning

Code scanning / Android Lint

Use TOML Version Catalog Instead Warning

Use version catalog instead
ksp(libs.hilt.android.compiler)
implementation(libs.hilt.android)

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# Project Configuration
androidGradlePlugin = "8.13.2"
minSdk = "24"
compileSdk = "36"
targetSdk = "36"
compileSdk = "37"
targetSdk = "37"
versionCode = "1"
versionName = "2.0.2" # {x-release-please-version}
javaVersion = "17"

# Kotlin & Coroutines
kotlin = "2.2.0"
kotlin = "2.3.21"

Check warning

Code scanning / Android Lint

Obsolete Gradle Dependency Warning

A newer version of org.jetbrains.kotlin:kotlin-stdlib than 2.3.21 is available: 2.4.0

Check warning

Code scanning / Android Lint

Newer Library Versions Available Warning

A newer version of org.jetbrains.kotlin.android than 2.3.21 is available: 2.4.10

Check warning

Code scanning / Android Lint

Newer Library Versions Available Warning

A newer version of org.jetbrains.kotlin.plugin.compose than 2.3.21 is available: 2.4.10

Check warning

Code scanning / Android Lint

Newer Library Versions Available Warning

A newer version of org.jetbrains.kotlin.plugin.parcelize than 2.3.21 is available: 2.4.10

Check warning

Code scanning / Android Lint

Newer Library Versions Available Warning

A newer version of org.jetbrains.kotlin.plugin.serialization than 2.3.21 is available: 2.4.10
kotlinxCoroutinesTest = "1.10.2"
kotlinxDatetime = "0.7.1"
ksp = "2.2.20-2.0.4"
Expand All @@ -36,8 +36,8 @@
materialIconsExtended = "1.7.8"

# Google Maps & Places
mapsCompose = "7.0.0"
mapsKtx = "6.0.0"
mapsCompose = "8.3.1"
mapsKtx = "6.1.0"
places = "5.1.1"
playServicesMaps = "20.0.0"
secretsGradlePlugin = "2.0.1"
Expand Down
6 changes: 3 additions & 3 deletions snippets/app-utils-ktx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ plugins {

android {
namespace = "com.example.app_utils_ktx"
compileSdk = 36
compileSdk = libs.versions.compileSdk.get().toInt()

defaultConfig {
applicationId = "com.example.app_utils_ktx"
minSdk = 23
targetSdk = 36
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
versionCode = 1
versionName = libs.versions.versionName.get()

Expand Down