Skip to content

Commit

Permalink
Fix backward compatibility for RN < 0.47
Browse files Browse the repository at this point in the history
  • Loading branch information
maxs15 committed Aug 5, 2017
1 parent 94e44fb commit 8894e2c
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -20,6 +20,10 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactConte
return Collections.emptyList();
}

public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}

@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
List<ViewManager> list = new ArrayList<>();
Expand Down

0 comments on commit 8894e2c

Please sign in to comment.