Skip to content

Commit

Permalink
Actually make MmkvModule
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Mar 22, 2021
1 parent 909738b commit e6079f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion android/src/main/java/com/reactnativemmkv/MmkvPackage.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public class MmkvPackage implements ReactPackage {
@NonNull
@Override
public List<NativeModule> createNativeModules(@NonNull ReactApplicationContext reactContext) {
return Collections.emptyList();
// TODO: Remove this dummy init, once TurboModules are stable I will migrate to those.
return Collections.singletonList(new MmkvModule());
}

@NonNull
Expand Down

0 comments on commit e6079f7

Please sign in to comment.