- Gate buildFfmpegJni + jniLibs packaging on `ux: enable_ffmpeg` in the consuming app's pubspec (default off) -- no LGPL / H.264-patent exposure unless explicitly enabled - appInfoBuilder generates kUxEnableFfmpeg from the same flag so apps register the FFmpeg LGPL notice eagerly, pubspec-only (no dart-define) - Add registerFfmpegLicense() + bundled LGPL-2.1 text asset - FFmpeg compliance docs (LICENSES-3RDPARTY.md, android/ffmpeg/README.md) - Network video streaming: XVideoPlayerController.network
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: ux
|
|
description: >-
|
|
Flutter toolkit for fluid, native-feeling UIs. Includes frame-accurate
|
|
keyboard height tracking via FFI with interactive dismiss, bezier utilities,
|
|
and layout primitives.
|
|
version: 0.10.0
|
|
homepage: https://swipelab.co/ux.html
|
|
repository: https://github.com/swipelab/ux
|
|
issue_tracker: https://github.com/swipelab/ux/issues
|
|
topics:
|
|
- keyboard
|
|
- ui
|
|
- animation
|
|
|
|
environment:
|
|
sdk: ">=3.0.0 <4.0.0"
|
|
flutter: ">=3.10.0"
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
matcher: ^0.12.16
|
|
build: '>=2.4.0 <5.0.0'
|
|
clock: ^1.1.1
|
|
ffi: ^2.1.0
|
|
|
|
dev_dependencies:
|
|
flutter_lints: ^6.0.0
|
|
flutter_test:
|
|
sdk: flutter
|
|
|
|
flutter:
|
|
plugin:
|
|
platforms:
|
|
ios:
|
|
pluginClass: XPlugin
|
|
android:
|
|
package: io.swipelab.ux
|
|
pluginClass: XPlugin
|
|
macos:
|
|
pluginClass: XPlugin
|
|
assets:
|
|
# LGPL-2.1 text for the bundled FFmpeg software H.264 decoder
|
|
# (libffmpegJNI.so, Android only). Surfaced via registerFfmpegLicense().
|
|
- assets/licenses/ffmpeg_LGPL-2.1.txt
|