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
Your project is configured with Android NDK 23.1.7779620, but the following plugin(s) depend on a different Android NDK version:
rive_common requires Android NDK 25.1.8937393
Fix this issue by using the highest Android NDK version (they are backward compatible).
Add the following to C:\Users\mindp\StudioProjects\dfms\android\app\build.gradle:
android {
ndkVersion = "25.1.8937393"
...
}
The text was updated successfully, but these errors were encountered:
Rive requires later NDK versions to compile the native code Rive uses. You can compile with a previous version but it will result in a large APK size. Setting a higher NDK is backwards compatible, as the error message above says.
But if you want you can also override the Android NDK version Rive requires by setting rive.ndk.version in gradle.properties. For example: rive.ndk.version=26.3.11579264. This will get rid of the warning, but we recommend using at least "25.1.8937393." - See #398.
Your project is configured with Android NDK 23.1.7779620, but the following plugin(s) depend on a different Android NDK version:
rive_common requires Android NDK 25.1.8937393
Fix this issue by using the highest Android NDK version (they are backward compatible).
Add the following to C:\Users\mindp\StudioProjects\dfms\android\app\build.gradle:
android {
ndkVersion = "25.1.8937393"
...
}
The text was updated successfully, but these errors were encountered: