Skip to content

Commit

Permalink
chore(android): bump sdk to v13.1.1 (#1228)
Browse files Browse the repository at this point in the history
* chore(android): bump android sdk v13.1.1
  • Loading branch information
ahmedAlaaInstabug authored Jun 4, 2024
1 parent c04e1a7 commit d27317e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changed

- Bump Instabug iOS SDK to v13.1.0 ([#1227](https://github.com/Instabug/Instabug-React-Native/pull/1227)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.1.0).
- Bump Instabug android SDK to v13.1.1 ([#1228](https://github.com/Instabug/Instabug-React-Native/pull/1228)). [See release notes](https://github.com/Instabug/android/releases/tag/v13.1.0).

## [13.0.5](https://github.com/Instabug/Instabug-React-Native/compare/v13.0.4...v13.0.5) (May 18, 2024)

Expand Down
2 changes: 1 addition & 1 deletion android/native.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project.ext.instabug = [
version: '13.0.3'
version: '13.1.1'
]

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,4 @@ public static Report createReport(ReadableArray tags, ReadableArray consoleLogs,
return report;
}

public static WritableArray parseConsoleLogs(ArrayList<a> consoleLogs) {
WritableArray writableArray = new WritableNativeArray();

for(int i = 0; i < consoleLogs.size(); i++) {
try {
writableArray.pushString(consoleLogs.get(i).toJson());
} catch (Exception e) {
e.printStackTrace();
}

}

return writableArray;
}
}

0 comments on commit d27317e

Please sign in to comment.