You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My play Sound lib require real path (/storage/emulated/0/appiwell/music/abc.mp3) but Document picker return content://com.android.providers.media.documents/document/audio%3A11649 and I am being blocked here.
The text was updated successfully, but these errors were encountered:
Android's DocumentPicker rightly returns a DocumentProvider URI, not a file, since it is not your file. If you absolutely need a file, you'll have to fetch the data and save it to one of the folders your app has access to (some data folder, or cache/temp forlder). RNFS may be useful for the latter part of deciding where to save it and saving the data.
My play Sound lib require real path (/storage/emulated/0/appiwell/music/abc.mp3) but Document picker return content://com.android.providers.media.documents/document/audio%3A11649 and I am being blocked here.
The text was updated successfully, but these errors were encountered: