Fixed deprecation

Kotlin upgrade
This commit is contained in:
Juha Heinanen
2024-04-06 17:52:08 +03:00
parent 5523042dc4
commit 23ae74e4fe

View File

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.8.22' ext.kotlin_version = '1.9.20'
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
@ -20,6 +20,6 @@ allprojects {
} }
} }
tasks.register('clean') { tasks.register('clean', Delete) {
delete rootProject.buildDir delete rootProject.layout.buildDirectory
} }