From 276e0655f477dd108d8d3a6ac5a5f403ee2a1c4b Mon Sep 17 00:00:00 2001 From: jbibik Date: Wed, 20 Mar 2024 07:41:32 -0700 Subject: [PATCH] Upgrade Kotlin version to 1.9.22 This will allow us to use the latest Compose complier version (from https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility) for the future Compose Demo. PiperOrigin-RevId: 617509694 --- build.gradle | 2 +- constants.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3d792da33f..753ff17cbf 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:8.0.1' classpath 'com.google.android.gms:strict-version-matcher-plugin:1.2.4' - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22' } } allprojects { diff --git a/constants.gradle b/constants.gradle index 0067f6a885..ea95a4dea6 100644 --- a/constants.gradle +++ b/constants.gradle @@ -35,7 +35,7 @@ project.ext { checkerframeworkVersion = '3.13.0' errorProneVersion = '2.18.0' jsr305Version = '3.0.2' - kotlinAnnotationsVersion = '1.8.20' + kotlinAnnotationsVersion = '1.9.22' // Updating this to 1.4.0+ will import Kotlin stdlib [internal ref: b/277891049]. androidxAnnotationVersion = '1.3.0' androidxAnnotationExperimentalVersion = '1.3.1'