react native — error react-native-webview:compileDebugKotlin FAILED
android/build.gradle
buildscript {
ext {
// ...
kotlin_version = '1.6.10' // <- add this line
}dependencies {
// ...
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // <- add this line
// ...
}
}