Skip to content

Commit

Permalink
[20331] *Update compileOptions and kotlinOptions Java version to 17 a…
Browse files Browse the repository at this point in the history
…nd eliminate inconsistencies.

*Upgrade android gradle plugin to 8.0.2 and gradle-wrapper.properties to 8.2.
*Update gradle.properties with new configs required by the update. *Update build.gradle(s) to add namespace as required by latest android gradle and remove package names in AndroidManifest.xml.
*Remove deprecated kotlin-android-extensions and add new kotlin-parcelize and remove androidExtensions experimental used for the old kotlin parcelize in kotlin-android-extensions.
*Update gradle to replace classifier that was deprecated when gradle plugin is updated, with archiveClassifier.
*Update kotlin from 1.6.20 to 1.8.20 and update codes affected or caused errors after the update
*Update Room version and update affected classes caused by it
  • Loading branch information
MichaelReyes committed Jan 7, 2024
1 parent 54bee65 commit 5712c23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.skedgo.tripkit.data.database.locations.carpods

import androidx.room.*
import androidx.room.ForeignKey.CASCADE
import androidx.room.ForeignKey.Companion.CASCADE

@Entity(tableName = "carPods")
class CarPodEntity {
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ versions.androidGradlePlugin = "8.0.2"
versions.okHttpVersion = "4.9.0"
versions.retrofitVersion = "2.8.1"
versions.androidxVersion = "1.1.0"
versions.room = "2.4.1"
versions.room = "2.5.1"
versions.architectureComponents = "1.0.0"
versions.testcore = "1.4.0"
versions.dagger = "2.24"
Expand Down

0 comments on commit 5712c23

Please sign in to comment.