Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased](https://github.com/Instabug/Instabug-React-Native/compare/v13.1.1...dev)

### Fixed

- Change parameters used inside inner classes to `final` in Android code to maintain compatibility with Java 7 and earlier ([#1239](https://github.com/Instabug/Instabug-React-Native/pull/1239)).

## [13.1.1](https://github.com/Instabug/Instabug-React-Native/compare/v13.0.4...dev) (JUN 6, 2024)

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ public void run() {
* @param level different severity levels for errors
*/
@ReactMethod
public void sendHandledJSCrash(final String exceptionObject, @Nullable ReadableMap userAttributes, @Nullable String fingerprint, @Nullable String level) {
public void sendHandledJSCrash(final String exceptionObject, @Nullable final ReadableMap userAttributes, @Nullable final String fingerprint, @Nullable final String level) {
try {
JSONObject jsonObject = new JSONObject(exceptionObject);
final JSONObject jsonObject = new JSONObject(exceptionObject);
MainThreadHandler.runOnMainThread(new Runnable() {
@Override
public void run() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void run() {
}

@ReactMethod
public void setCodePushVersion(@Nullable String version) {
public void setCodePushVersion(@Nullable final String version) {
MainThreadHandler.runOnMainThread(new Runnable() {
@Override
public void run() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void run() {
}

@ReactMethod
public void getSessionReplayLink(Promise promise) {
public void getSessionReplayLink(final Promise promise) {
MainThreadHandler.runOnMainThread(new Runnable() {
@Override
public void run() {
Expand Down