path_provider_tvos 0.0.1
path_provider_tvos: ^0.0.1 copied to clipboard
tvOS (Apple TV) implementation of the path_provider Flutter plugin, provided by flutter-tvos.
0.0.1 #
Initial release — hand-written, maintained tvOS implementation of
path_provider for
flutter-tvos. Upstream
path_provider_foundation is a dart:ffi / native-assets plugin that
the tvOS toolchain cannot build, so this package is not generated
output — it is a thin native (NSSearchPath… / NSTemporaryDirectory)
implementation answering the same method-channel contract.
- Supported:
getTemporaryDirectory(),getApplicationDocumentsDirectory(),getApplicationSupportDirectory()(auto-created),getApplicationCacheDirectory()(auto-created),getLibraryDirectory(). - Not supported on tvOS:
getDownloadsDirectory()returnsnull(no user Downloads dir in the tvOS sandbox);getExternalStoragePath*/getExternalCachePathsthrowUnsupportedError(Android-only, same as iOS).
Verified end-to-end on a physical Apple TV via video_player_tvos
(14/14 integration tests). See README.md and PORTING_REPORT.md
for detail.