Skip to content

Commit d0cb024

Browse files
committed
fix build failing on android due to uncommented code
1 parent f09e1c7 commit d0cb024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/ammarahmed/mmkv/RNMMKVJSIModulePackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
public class RNMMKVJSIModulePackage implements JSIModulePackage { // Replace implements JSIModulePackage with extends ReanimatedJSIModulePackage
1414
@Override
1515
public List<JSIModuleSpec> getJSIModules(ReactApplicationContext reactApplicationContext, JavaScriptContextHolder jsContext) {
16-
super.getJSIModules(reactApplicationContext, jsContext); // <-- ADD THIS
16+
//super.getJSIModules(reactApplicationContext, jsContext); // <-- ADD THIS
1717
reactApplicationContext.getNativeModule(RNMMKVModule.class).installLib(jsContext, reactApplicationContext.getFilesDir().getAbsolutePath() + "/mmkv");
1818

1919
return Collections.emptyList();

0 commit comments

Comments
 (0)