Skip to content

Commit

Permalink
fix(android): Add instructionsAddr param to `fetchNativeStackFramesBy
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich committed Aug 11, 2023
1 parent e64a66f commit 3bab0a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void fetchNativePackageName(Promise promise) {
}

@Override
public void fetchNativeStackFramesBy(Promise promise) {
public void fetchNativeStackFramesBy(ReadableArray instructionsAddr, Promise promise) {
// Not used on Android
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public void fetchNativePackageName(Promise promise) {
}

@ReactMethod
public void fetchNativeStackFramesBy(Promise promise) {
public void fetchNativeStackFramesBy(ReadableArray instructionsAddr, Promise promise) {
// Not used on Android
}
}

0 comments on commit 3bab0a5

Please sign in to comment.