Skip to content

Commit

Permalink
update gradle 8.2.0 and kotlin 1.9.21 (#3438)
Browse files Browse the repository at this point in the history
* update kotlin 1.9.21 and gradle 8.2.0

* update kotlincompiler 1.5.6

* Modify override method
  • Loading branch information
andresmr authored Dec 15, 2023
1 parent b1f5872 commit 3a9ad89
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 23 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ android {
compose = true
dataBinding = true
viewBinding = true
buildConfig = true
}

configurations.all {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PreferencesTestingModule : PreferenceModule() {

@Provides
@Singleton
override fun preferenceProvider(context: Context): PreferenceProvider {
fun providePreferenceProvider(context: Context): PreferenceProvider {
return PreferenceTestingImpl(context)
}
}
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ org.gradle.parallel=true
org.gradle.configureondemand=true

android.suppressUnsupportedCompileSdk=32
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ sdk = "34"
minSdk = "21"
vCode = "128"
vName = "2.9.1-DEV"
kotlinCompilerExtensionVersion = "1.5.4"
kotlinCompilerExtensionVersion = "1.5.6"

gradle = "8.1.3"
kotlin = '1.9.20'
gradle = "8.2.0"
kotlin = '1.9.21'
hilt = '2.47'
hiltCompiler = '1.0.0'
jacoco = '0.8.10'
Expand Down

0 comments on commit 3a9ad89

Please sign in to comment.