Daco Harkes

Results 419 comments of Daco Harkes

> How are the dependencies of the package resolved then? The `packages_config.json` for the root package is used. (We've had a bunch of conversations whether we should allow hooks of...

I'm a bit confused what this issue is about: > `flutter create -a java -i objc --platforms=android,ios --template=plugin native_add` This does not use the `plugin_ffi` or `package_ffi` template. The documentation...

@luhuajcdd Could you post the instructions for a reproduction? `flutter create --template=plugin_ffi --platform=android` should work out of the box.

``` $ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel master, 3.7.0-10.0.pre.19, on Debian GNU/Linux rodete 5.19.11-1rodete1-amd64, locale en_US.UTF-8) [✓] Android toolchain -...

> So the problem seems tied to the runtime environment, would be something breaking the system from certain API level down? https://docs.flutter.dev/development/tools/sdk/release-notes/supported-platforms It looks like Android SDK 16-18 is best...

Does the jar contain both `libflutter.so` and `libhello.so`? Ah, I remember issues with Android overriding the `dlopen` search paths on older Androids. Could you try the workaround mentioned in: *...

If you have an already compiled library: https://docs.flutter.dev/development/platform-integration/ios/c-interop#closed-source-third-party-library Dynamic libraries are `lib.dylib` on MacOS and iOS. (Not `lib.so` as on Linux/Android.) ```podspec # # To learn more about a Podspec...

> I'm not sure how to get loading a pure dylib working, and even if you did I don't think it would be approved by the App Store--it needs to...

> making a plugin (not a normal Flutter app, as your example as) I've never been able to get it to work with a normal Flutter app either, only with...