native
native copied to clipboard
Dart packages related to FFI and native assets bundling.
example: ```c // test.h #define MY_MACRO_CONST 100 int my_global_var; const int my_const_var; static int my_static_var = 200; static const int my_static_const_var = 300; ``` results in this generated code: ```dart...
`package:jni` supports Windows, Linux, ... and Android but a lot of the times users **only** want to use it for Android. Sentry also supports Windows, Linux, ... but wants to...
After https://github.com/dart-lang/native/issues/2677, we can make this package have lazy json reading similar to what we already do in the link input. --- ## Phase 1: Use a Code Generator for...
* [x] Changing the output format in dart2js: https://dart-review.googlesource.com/c/sdk/+/416000 * [ ] Change the input to use `@RecordUse` * [ ] Change the input to automatically apply the no-inline pragma...
The main design goal is that the script should be composable. It should be easy for the user to integrate the new build stuff with their existing build script if...
I have written a plugin with jnigen and when impl the BroadcastReceiver, we need impl it on Android side and then bind the impl with jnigen. Here is the key...
FFIgen and objective_c are pretty tightly coupled. It might make sense to code gen a comment or assert about the version of package:objective_c that the generated code expects. ```dart //...
Migrate the readme from yaml config to Dart API. In particular, make sure that everything in the large table of yaml options is mentioned in the Dart API docs. Then...