I'm working on a procedure to import a file within the application, in this case I am taking a google drive file.
When the user selects a file startActivityForResult
returns a url like this:
content: //com.google.android.apps.docs.storage/document/acc%%3D1%%3Bdoc%%3D1214
I can not resolve this url to access the content of the file. Does anyone have experience on this?
On google I found some old module, but, I do not think solves my problem.
Thank you.
Finally I've found the solution. you need to copy the file to the applicationDataDirectory before trying to get the content.
Copying the file will automatically resolve the content uri.