Closed HamdaanAliQuatil closed 2 months ago
Need to bump the Android NDK version as package requires version 26.1.10909125
Your project is configured with Android NDK 23.1.7779620, but the following plugin(s) depend on a different Android NDK version:
- integration_test requires Android NDK 26.1.10909125
- webcrypto requires Android NDK 26.1.10909125
Fix this issue by using the highest Android NDK version (they are backward compatible).
Add the following to \android\app\build.gradle:
android {
ndkVersion = "26.1.10909125"
...
}
Flutter has deprecated imperative apply script method to apply Gradle plugins: Deprecated imperative apply of Flutter's Gradle plugins
While trying to run the example in this package,
flutter run
issues the following warning:The example code cannot run since Flutter's supported Kotlin version is
1.7.0
and the project uses1.6.21
.flutter run
issues the following error:Solution: Bump Kotlin version in the new declarative plugins {} block to
1.7.10
.Step to Reproduce the error:
example
.flutter run
.