Skip to content

Commit 650889e

Browse files
committed
Update Kotlin to version 2.1.0
- Update Kotlin from 1.9.0 to 2.1.0 in plugin build.gradle - Update Kotlin from 1.9.0 to 2.1.0 in example app build.gradle - Update Kotlin from 1.9.0 to 2.1.0 in example app settings.gradle This brings the plugin up to date with the latest stable Kotlin version.
1 parent 5bdb3d3 commit 650889e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'com.nschairer.keyboard_height_plugin'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.9.0'
5+
ext.kotlin_version = '2.1.0'
66
repositories {
77
google()
88
mavenCentral()

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.9.0'
2+
ext.kotlin_version = '2.1.0'
33
repositories {
44
google()
55
mavenCentral()

example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2121
id "com.android.application" version "8.6.0" apply false
22-
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
22+
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2323
}
2424

2525
include ":app"

0 commit comments

Comments
 (0)