You need to change the kotlin version in your android root project,
ext.kotlin_version = '1.6.0' // or whatever version is currently there
Replace it with the latest stable version, for example:
ext.kotlin_version = '1.9.0' // or latest version
Also update gradle android/gradle/wrapper/gradle-wrapper.properties file
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
hope it helps!