if you add the package to a new flutter package on android studio by default it won't compile with a bunch of errors like this:
A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
Duplicate class kotlin.collections.jdk8.CollectionsJDK8Kt found in modules jetified-kotlin-stdlib-1.8.22 (org.jetbrains.kotlin:kotlin-stdlib:1.8.22) and jetified-kotlin-stdlib-jdk8-1.7.10 (org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10)
I can add
ext.kotlin_version = '1.8.10'
to the build.gradle but maybe it should be specified on the doc that this version is required or it won't work
if you add the package to a new flutter package on android studio by default it won't compile with a bunch of errors like this:
A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
I can add ext.kotlin_version = '1.8.10' to the build.gradle but maybe it should be specified on the doc that this version is required or it won't work