Skip to content

Commit cdb4687

Browse files
author
Bartosz Litwiniuk
committed
Update library version - v3.7.1
1 parent 2bd5472 commit cdb4687

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Backtrace Android Release Notes
22

3-
## Version 3.7.0
3+
## Version 3.7.1 - 14.06.2022
4+
- Error type "crash" only on unhandled exceptions from main thread for other threads - error type will be "unhandled exception"
5+
6+
## Version 3.7.0 - 28.04.2022
47
- Added error.type attribute that shows type of the report
58
- Added backtrace.version attribute that shows Backtrace agent version
69

@@ -38,7 +41,7 @@
3841
- Backtrace Android allows to capture native crashes from Android NDK code. To enable NDK crashes exception handler use `setupNativeIntegration` method and pass backtraceClient with credentials.
3942

4043
```java
41-
database.setupNativeIntegration(backtraceClient, credentials);
44+
database.setupNativeIntegration(backtraceClient, credentials);
4245
```
4346

4447
## Version 3.0.2 - 23.01.2020

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ catch (e: Exception) {
7979
* Gradle
8080
```
8181
dependencies {
82-
implementation 'com.github.backtrace-labs.backtrace-android:backtrace-library:3.7.0'
82+
implementation 'com.github.backtrace-labs.backtrace-android:backtrace-library:3.7.1'
8383
}
8484
```
8585

@@ -88,7 +88,7 @@ dependencies {
8888
<dependency>
8989
<groupId>com.github.backtrace-labs.backtrace-android</groupId>
9090
<artifactId>backtrace-library</artifactId>
91-
<version>3.7.0</version>
91+
<version>3.7.1</version>
9292
<type>aar</type>
9393
</dependency>
9494
```

backtrace-library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion 21
99
targetSdkVersion 30
10-
versionCode 370
11-
versionName "3.7.0"
10+
versionCode 371
11+
versionName "3.7.1"
1212
buildConfigField("String", "VERSION_NAME", "\"${versionName}\"")
1313

1414
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ org.gradle.jvmargs=-Xmx1024m
1313
# org.gradle.parallel=true
1414

1515

16-
VERSION_NAME=3.7.0
17-
VERSION_CODE=370
16+
VERSION_NAME=3.7.1
17+
VERSION_CODE=371
1818
GROUP=com.github.backtrace-labs.backtrace-android
1919

2020
POM_DESCRIPTION=Backtrace's integration with Android applications written in Java allows customers to capture and report handled and unhandled java exceptions.

0 commit comments

Comments
 (0)