Skip to content

Releases: KasemJaffer/receive_sharing_intent

receive_sharing_intent-v1.8.0

29 Apr 17:53
Compare
Choose a tag to compare
  • Added support for cached images on iOS such as shared images from a Screenshot.

receive_sharing_intent-v1.7.0

09 Apr 16:29
Compare
Choose a tag to compare
  • Added ReceiveSharingIntent.setMockValues method to set mock values for testing purposes.
ReceiveSharingIntent.setMockValues(
      initialMedia: [],
      mediaStream: Stream.empty(),
    );

Breaking change

  • Use instance getter i.e. ReceiveSharingIntent.instance.getInitialMedia() instead of ReceiveSharingIntent.getInitialMedia()

receive_sharing_intent-v1.6.8

01 Apr 18:58
85fd308
Compare
Choose a tag to compare
  • Fix sometimes file doesn't exist error on iOS

receive_sharing_intent-v1.6.7

02 Feb 16:46
fc727fd
Compare
Choose a tag to compare

Fix: received sharing url in ios not working on the version 1.6.6

#276

receive_sharing_intent-v1.6.5

29 Jan 17:36
1190be7
Compare
Choose a tag to compare

Update deprecated API usage in Android

receive_sharing_intent-v1.6.4

26 Jan 23:00
c58cc13
Compare
Choose a tag to compare
  • Added a flag to disable the automatic closing of the share extension after sharing.
class ShareViewController: RSIShareViewController {
    
    // Use this method to return false if you don't want to redirect to host app automatically.
    // Default is true
    override func shouldAutoRedirect() -> Bool {
        return false
    }
    
}
  • Added new field message to the SharedMediaFile class.

receive_sharing_intent-v1.6.3

26 Jan 20:33
f92195a
Compare
Choose a tag to compare
  • Updated readme iOS section, rearranged the steps to properly setup the plugin and added a new step #7

receive_sharing_intent-v1.6.2

26 Jan 18:11
a9a232e
Compare
Choose a tag to compare

Requires Swift 5.0
Fix backward compatibility down to iOS 8.0
Use UTType for iOS 14.0 and above

receive_sharing_intent-v1.6.1

26 Jan 02:03
4dde174
Compare
Choose a tag to compare
  • Stop using UTType because it doesn't exist prior to iOS 14.0

receive_sharing_intent-v1.6.0

25 Jan 23:58
8c2a757
Compare
Choose a tag to compare
  • All files types now come through getInitialMedia and getMediaStream
  • Your ShareViewController class should now inherit from RSIShareViewController. Eliminating the
    need to copy the whole class again. Please check the example project for more details.
  • Removed getInitialText, getInitialTextAsUri, getTextStream and getTextStreamAsUri methods.
    Please use getInitialMedia and getMediaStream instead.