- Update android to use compileSdkVersion 30
- Enabled null safety
- Fix frozen app after sharing. Fix requires you to update your Sharing Extension Class (Check example project)
- Fix regression regarding link propagation
- Fix suppressed link propagation to other modules on iOS
- Migrage to flutter android embedding v2
- Fix crash while getting raw files path on Android
- Preserve original file name
Note. Updating your Sharing Extension Class is required (please check that in the example project)
- Added support for sharing any type of file
- In your project
ios/Runner/Info.plist
please change 'SharePhotos' to 'ShareMedia' as follows
<key>CFBundleURLSchemes</key>
<array>
<string>ShareMedia</string>
- Fixed the >= 4.2 Swift compiler parsing errors
- Fix Some photos and videos have wrong extension names
- Fix sharing dialog doesn't close properly
Note. Both fixes require you to update your Sharing Extension Class (please check that in the example project)
- Remove unnecessary code
- Fixed iOS 13 bugs
- Video support.
ShareViewController.swift
Please copy the whole class again as there are many code changes.getInitialImage
changed togetInitialMedia
for images and videosgetImageStream
changed togetMediaStream
for images and videos- both
getInitialMedia
andgetMediaStream
now return video duration and thumbnail along with the shared file path
getInitialImageAsUri
getImageStreamAsUri
- New method added to reset the already consumed callbacks
- Example project updated. Check the method [handleImages] in example/Sharing Extension/ShareViewController.swift
- Fix some images are not successfully shared on iOS
- Add screen recorded demo
- Fix sharing image does not work sometimes on iOS and on Android when sharing from google photos (cloud)
- Return absolute path for images instead of a reference that can be used directly with File.dart
- Refactor code
- Bug fixes and updated api name
- Add support for urls
- Remove un-necessary jar libraries
- Fix issue where sharing in iOS simulator does not work