dylib
A set of helpers that help resolving names and paths of dynamic libraries.
Usage
A simple usage example:
import 'package:dylib/dylib.dart';
print(resolveDylibPath('foo'));
// android: libfoo.so
// ios: libfoo.dylib
// linux: libfoo.so
// macos: libfoo.dylib
// windows: foo.dll
Libraries
- dylib
-
A set of helpers that help resolving names and paths of dynamic libraries.
The helpers are meant to be used in conjuction with
DynamicLibrary
fromdart:ffi
.