I Am Getting This Msg Speech That Did Not Find (no Such File Or Directory)
I am getting this msg speech that did not find (No such file or directory) the path is correct what could be wrong? W/System.err: java.io.FileNotFoundException: /map.app.fileprovid
Solution 1:
As the exception indicates, The path does not exist!!
As a bit of advice, try not to fight with exceptions, Just follow them, even if you're pretty sure!
Anyway this time its the
valauthorities= activity.packageName + ".fileprovider"
part to blame because you have defined the provider in manifest with .provider
suffix.
So change to:
valauthorities= activity.packageName + ".provider"
It should be working by that change.
Cheers!
Post a Comment for "I Am Getting This Msg Speech That Did Not Find (no Such File Or Directory)"