Closed asp3 closed 5 years ago
My package uses react-native-fs
, which needs linking, to implement GDrive.files.download()
. It's not used otherwise.
So if you find a package implementing Google Drive sign-in, which can be used in Expo, you're good to go. I haven't tried it myself though.
so if i were just using the .get function, would I need to use react-native-fs
?
Nope.
perfect, thanks!
Glad my package suits your needs.
You're welcome.
Понедельник, 15 апреля 2019, 23:28 +03:00 от Abhishek Patel notifications@github.com:
perfect, thanks! — You are receiving this because you commented. Reply to this email directly, view it on GitHub , or mute the thread .
-- � убен Шалимов
Expo has its own fs module. Will it work with that or it specifically needs react-native-fs??
Files.js
imports RNFS
from react-native-fs
and then invokes downloadFile()
on it. Thus, everything will work, if you change the import statement and the module you currently have supports the same functionality.
I saw that it needs to link a library, but expo doesn't allow that. Is there any way to use it without having to export?