I\'m trying to set the source of an img tag in my app based on the image chosen from the device image gallery using the PhoneGap/Cordova Camera Plugin.
It has worked
Here is a simple fix to this problem:
replace this:
content://com.android.providers.media.documents/document/image%3A352
by this:
content://com.android.providers.media.documents/document/image%253A352
if you are using JavaScript you can use this code:
var path = content://com.android.providers.media.documents/document/image%3A352;
path = path.replace("%", "%25");
this technique force the uri to let pass "%3A" as it is, without changing it to ":", hope it will work for you !