I'm creating an Android application, where it should read a file created by another application, the file is saved in a path like this: /data/data/com.package.name/file.pdf
when I read the file, the application goes in exception, here's the error: java.io.FileNotFoundException: /data/data/com.package.name/file.pdf: open failed: EACCES (Permission denied)
The permissions are already included in the AndroidManifest.xml, the application works perfectly, if it reads a file located in the download folder, but can not read the file if it is located in this path.
Someone could help me, thanks