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
We should let Flutter populate a field in the Config so that we can read that in package:c_compiler. (must have)
In addition, a package might want to specify an NDK lower bound as well. We could try to standardize that in the pubspec.yaml and read it in into the config, or have the package override the value in their build.dart. We can't rely on Flutter infra for this, because we don't have the plugin.gradle file anymore (none of the boilerplate files) with native assets. (nice to have, probably not needed for MVP)
I don't believe we have to concern ourselves with the end user specifying an NDK version. If the end-user does that, it should be propagated by Flutter and be passed from Flutter to the config instead of from the end user directly to us. So we don't have a need for #39 here.
The text was updated successfully, but these errors were encountered:
dcharkes
added
P2
A bug or feature request we're likely to work on
and removed
P1
A high priority bug; for example, a single project is unusable or has many test failures
labels
May 23, 2023
We need the launcher (Flutter) to specify the minimum Android API level when compiling, otherwise we can get an API mismatch such as:
https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md
In the Flutter FFI plugins this is currently done by passing it to the build system. And it's checked to be compatible between final app and plugins.
In the CMake builds prototype I had it hardcoded.
We should let Flutter populate a field in the
Config
so that we can read that inpackage:c_compiler
. (must have)In addition, a package might want to specify an NDK lower bound as well. We could try to standardize that in the
pubspec.yaml
and read it in into the config, or have the package override the value in theirbuild.dart
. We can't rely on Flutter infra for this, because we don't have theplugin.gradle
file anymore (none of the boilerplate files) with native assets. (nice to have, probably not needed for MVP)I don't believe we have to concern ourselves with the end user specifying an NDK version. If the end-user does that, it should be propagated by Flutter and be passed from Flutter to the config instead of from the end user directly to us. So we don't have a need for #39 here.
The text was updated successfully, but these errors were encountered: