I want to create share button that will use android ACTION_SEND intent for sharing image. It\'s my code:
from kivy.setupconfig import USE_SDL2 def share(pa
I found solution. You must cast uri to parcelable and then pass it to intent:
parcelable = cast('android.os.Parcelable', uri) shareIntent.putExtra(Intent.EXTRA_STREAM, parcelable)