In android I get this at startup:
java.lang.IllegalStateException: Native module RNFSManager tried to override RNFSManager for module name RNFSManager. If this was your intention, return true from RNFSManager#canOverrideExistingModule()
ver. 1.5.1 and 2.0.1-rc2
Any idea? It works just fine in IOS.
Thanks.
found the issue. RNFS was imported twice in android. probably a glitch from link. now it's ok.
Ah! I just learn something. Whenever react-native link <package-name> is used it automatically insert the various import and @override ... new <package>() in MainApplication.java.
Good to know.
Most helpful comment
found the issue. RNFS was imported twice in android. probably a glitch from link. now it's ok.