Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.6.0

* Re-release: replaces Flutter-plugin-based implementation with direct
FFI calls to Foundation.
* Updates minimum supported SDK version to Flutter 3.38.4/Dart 3.10.

## 2.5.1

* Reverts to plugin-based implementation while FFI issues are investigated.
Expand Down
18 changes: 18 additions & 0 deletions packages/path_provider/path_provider_foundation/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Contributing

## `ffigen`

This package uses [ffigen](https://pub.dev/packages/ffigen) to call Foundation
methods, rather than using the standard Flutter plugin structure. To add new
functionality to the FFI interface, update `tool/ffigen.dart`, then run:

```bash
dart run tool/ffigen.dart
```

### Configuration philosophy

This package intentionally uses very strict filtering rules to include only the
necessary methods and functions. This is partially to keep the package small,
but mostly to avoid unnecessarily generating anything that requires native code
helpers, which would require setting up a native compilation step.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading