I am attempting to broadbast Bitmaps generated by one app to another.
I am doing this so all the coded needed to generate the Bitmap is not needed in the destination app, to reduce bloat. I do not want to save the Bitmaps as files cause that puts unwanted strain on the SD card
When I looked it up, Intent.getParcelableExtra will allow me to get the Bitmap from a broadcast intent, how would I use a reflection object to call that since it's not available in the StartingIntent object?
I am doing this so all the coded needed to generate the Bitmap is not needed in the destination app, to reduce bloat. I do not want to save the Bitmaps as files cause that puts unwanted strain on the SD card
When I looked it up, Intent.getParcelableExtra will allow me to get the Bitmap from a broadcast intent, how would I use a reflection object to call that since it's not available in the StartingIntent object?