Is it possible to get notified about picture being captured in Android OS? I want to create my own app, which will add GPS coordinates if picture was taken so fast, that GPS was not yet ready at the capture moment.
I would go to the picture file and fix this by adding GPS coordinates when it would be ready.
Any tips around this issue?
You may want to refer to Android: BroadcastReceiver intent to Detect Camera Photo Taken? as this appears to be a duplicate.
In particular it seems you need to have a ContentObserver for the Media directory, this isn’t a perfect solution (no guarantee of content type, etc), but I can’t seem to find any reference to a broadcasted intent for this particular event.