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().
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