We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1963c commit 970384cCopy full SHA for 970384c
android/src/main/java/com/rnfs/RNFSPackage.java
@@ -16,9 +16,15 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactConte
16
modules.add(new RNFSManager(reactContext));
17
return modules;
18
}
19
-
+
20
+ // deprecated >= RN 0.47.0
21
+ public List<Class<? extends JavaScriptModule>> createJSModules() {
22
+ return Collections.emptyList();
23
+ }
24
25
@Override
26
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
27
return Arrays.<ViewManager>asList();
28
29
30
0 commit comments