Skip to content

Commit

Permalink
bump dependency versions. Fixes a memory leak in compose navigation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixam97 committed Aug 1, 2024
1 parent 58cc3c1 commit 37e86f0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ class DataCollector: Service() {

startForeground(CarStatsViewer.FOREGROUND_NOTIFICATION_ID + 10, foregroundServiceNotification.build())
InAppLogger.i("[NEO] Foreground service started in onStartCommand()")
super.onStartCommand(intent, flags, startId)
return START_NOT_STICKY
// super.onStartCommand(intent, flags, startId)
return START_STICKY
}

override fun onCreate() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ class PlotView @JvmOverloads constructor(
}

override fun onDraw(canvas: Canvas) {
Log.d("PLOT", "onDraw, dimensionRestriction: $dimensionRestriction, dimensionShift:$dimensionShift")
// Log.d("PLOT", "onDraw, dimensionRestriction: $dimensionRestriction, dimensionShift:$dimensionShift")
mWidth = width
mHeight = height
super.onDraw(canvas)
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[versions]
agp = "8.3.2"
kotlin = "2.0.0" # Can't bump Kotlin version yet due to synthetics
kotlin = "2.0.0"
ktx = "1.13.1"
activity = "1.9.0"
fragment-ktx = "1.7.1"
activity = "1.9.1"
fragment-ktx = "1.8.2"
recyclerview = "1.3.2"
room = "2.6.1"
appcompat = "1.7.0"
constraintlayout = "2.1.4"
lifecycle = "2.8.1"
navigation = "2.8.0-beta02"
car-app = "1.7.0-alpha02"
lifecycle = "2.8.4"
navigation = "2.8.0-beta06"
car-app = "1.7.0-beta01"
gson = "2.10.1"
gms-location = "21.3.0" # Newer version requires Kotlin 1.9, see above
gms-location = "21.3.0"
kotlinx = "1.7.3"
serialization = "1.7.0"
compose = "1.6.7"
compose = "1.6.8"
jakara-mail = "2.0.0"
aboutlibraries = "10.6.1"
aboutlibraries-plugin = "10.9.2"
Expand Down

0 comments on commit 37e86f0

Please sign in to comment.