giandifra / simple_share

A Flutter plugin for share image, video or file
MIT License
18 stars 15 forks source link

AndroidX #6

Closed sensiblearts closed 5 years ago

sensiblearts commented 5 years ago

Hi, I've never done a pull request before, so I hope I'm doing this correctly.

I ran into 2 problems with simple_share so I fixed them for my app; perhaps, you want these changes in your repository:

1) used Android Studio to migrate to AndroidX.

2) The intent was retaining memory of a previously sent attachment. For example, if I share a JPG via email; then, in a second share attempt, I want to send only subject and msg, the attached JPG is send the second time, too. I fixed this by moving this.intentBuilder = ShareCompat.IntentBuilder.from().

Thanks, DA