Skip to content

Commit

Permalink
Update kotlin version and fix WorkManagerConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
udenr committed Dec 20, 2023
1 parent bebe302 commit 7baa371
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ class PFACodeScannerApplication : MultiDexApplication(), Configuration.Provider
}
}

override fun getWorkManagerConfiguration(): Configuration {
return Configuration.Builder().setMinimumLoggingLevel(Log.INFO).build()
}
override val workManagerConfiguration = Configuration.Builder().setMinimumLoggingLevel(Log.INFO).build()

}
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.8.22'
ext.kotlin_version = '1.9.10'

repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'com.android.tools.build:gradle:8.1.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"


Expand All @@ -18,7 +18,7 @@ buildscript {
}

plugins {
id 'com.google.devtools.ksp' version "$kotlin_version-1.0.11" apply false
id 'com.google.devtools.ksp' version "$kotlin_version-1.0.13" apply false
}

allprojects {
Expand Down

0 comments on commit 7baa371

Please sign in to comment.