Skip to content

Commit

Permalink
App's build.gradle fix after agp & kotlin bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey-Makarov committed Sep 28, 2023
1 parent 65bff16 commit cecbe85
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,21 @@ android {
}
}

compileOptions {
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}

buildFeatures {
compose = true
buildConfig = true
}

composeOptions {
kotlinCompilerExtensionVersion = "1.4.7"
kotlinCompilerExtensionVersion = "1.5.3"
}
}

Expand All @@ -95,8 +104,9 @@ dependencies {

implementation("com.google.accompanist:accompanist-pager:0.27.0")

implementation("com.google.dagger:dagger:2.44")
kapt("com.google.dagger:dagger-compiler:2.44")
val daggerVersion = "2.48"
implementation("com.google.dagger:dagger:$daggerVersion")
kapt("com.google.dagger:dagger-compiler:$daggerVersion")

implementation("com.google.code.gson:gson:2.10")
}

0 comments on commit cecbe85

Please sign in to comment.