Skip to content

Commit

Permalink
fix: Only generate C++ bindings, skip Java/ObjC
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Mar 26, 2024
1 parent 29501c0 commit e89a472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NativeMmkv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ let module: Spec | null = null;
export function getMMKVTurboModule(): Spec {
if (module == null) {
// try to find the turbomodule
module = TurboModuleRegistry.get<Spec>('Mmkv');
module = TurboModuleRegistry.get<Spec>('MmkvCxx');

if (module == null) {
// if it still is null, something went wrong!
Expand Down

0 comments on commit e89a472

Please sign in to comment.