You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error can look like this on older versions:
Your project is configured with Android NDK 26.3.11579264, but the following plugin(s) depend on a different Android NDK version:
- onesignal_flutter requires Android NDK 27.0.12077973
Fix this issue by using the highest Android NDK version (they are backward compatible).
Add the following to /Users/nanli/Documents/GitHub/OneSignal-Flutter-SDK/example/android/app/build.gradle.kts:
android {
ndkVersion = "27.0.12077973"
...
}
If you are using an older Flutter or Android Studio version, you may see an error about `ndkVersion`. Follow the instructions to update the version in `build.gradle.kts`.
28
+
27
29
## Getting Started
28
30
29
31
For help getting started with Flutter, view our online
0 commit comments