The problem is that when I want to create apk files (by flutter build apk --split-per-abi ) I have the error :
[!] Your project requires a newer version of the Kotlin Gradle plugin.
Find the latest version on https://kotlinlang.org/docs/releases.html#release-details, then update
D:\Programming_Project_\owlegram-flutter-android-1\android\build.gradle:
ext.kotlin_version = ''
gradle-wrapper.properties:
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
and build.gradle:
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
maven { url "https://maven.google.com/"}
mavenCentral()
jcenter()
}
Which version of kotlin and gradel do you offer?