I\'m working on an Android application which needs to perform an action each time a new image is taken with the phone. I don\'t want to take the image within my application
Quite an old question, if anyone still needs the solution try using
android.hardware.action.NEW_PICTURE
as your intent filter
It will return the Uri of the image in intent.getData() of its onReceive() function
Hope it helps