Hello All
For those of you with the same problem, I’ve manage to find a feasible solution.
Indeed, the file is downloaded to the device, as I mentioned. But I could not find the file.
The key to solution is use the “Device File Explorer” from Android Studio.
Using the activity “get temporary directory” the file is downloaded to the “cache” subfolder in the application directory tree. Unfortunatelly, we cannot open this file using the full path in the “view file” activity.
The alternative is to create another activity to use other options from the RNFS package. In this case, DocumentDirectoryPath. This will able us to save in the “files” subfolder. The same issue happens when we try to use the full path in the “view file” activity. But when we use only the file name (withou the path) it works!! See the pictures bellow.
In summary, use the custom activity “getDocumentsDirectory” to generate the full path of your file, and then use the ‘view file’ defining only the filename (without the path) to view the file.