Skip to content

Commit

Permalink
build: add androidx room ktx; update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixo-dev committed May 2, 2024
1 parent 83df528 commit 01a478f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ plugins {

android {
namespace 'com.nicolas.freegames'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.nicolas.freegames"
minSdk 24
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -78,9 +78,10 @@ dependencies {

implementation("androidx.navigation:navigation-compose:2.5.3")

implementation("androidx.room:room-runtime:2.4.0")
annotationProcessor("androidx.room:room-compiler:2.4.0")
kapt("androidx.room:room-compiler:2.4.0")
implementation("androidx.room:room-runtime:2.6.1")
implementation("androidx.room:room-ktx:2.6.1")
annotationProcessor("androidx.room:room-compiler:2.6.1")
kapt("androidx.room:room-compiler:2.6.1")

implementation("androidx.datastore:datastore-preferences:1.0.0")
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1"
Expand Down

0 comments on commit 01a478f

Please sign in to comment.