Skip to content

Commit

Permalink
Implement createJSModules() as well
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtrogers authored Mar 5, 2019
1 parent 3a11715 commit 50a329f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions android/src/main/java/com/actionsheet/ActionSheetPackage.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactConte
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Collections.emptyList();
}

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

0 comments on commit 50a329f

Please sign in to comment.