Basically I want to set a Broadcastreceiver that gets triggered when the user downloads an image into gallery/phone from chrome, facebook, twitter..etc
when the photo is finished downloading , and the actions is triggered, I want access to the downloaded image for extra work such as editing and stuff..!
I'm thinking this can be accomplished by Broadcastreceiver, that listens for the image and then do the actions that needed..!
I've tried to search for action to be added in the Manifest inside the receiver intent-filter , but I don't which one?
<receiver
android:enabled="true"
android:exported="true"
android:name=".MyReceiver">
<inent-filter>
<action android:name="??????"/>
</inent-filter>
I've read almost all the intent action here, but couldn't find the one..!