Skip to content

Commit

Permalink
v4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench authored Jun 10, 2019
2 parents 8452364 + 5fe4b6e commit 47f1200
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 4.4.0 (2019-06-10)

This release is companion update for bugsnag-android v4.15.0, which supports detecting and reporting C/C++ crashes without a separate library.

Since `bugsnag-android` now contains native code, update shared object extraction to include libraries from there as well as `bugsnag-android-ndk`
[#164](https://github.com/bugsnag/bugsnag-android-gradle-plugin/pull/164)

## 4.3.1 (2019-05-31)

* Calculate correct location for objdump on windows, fixing NDK symbol upload
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = com.bugsnag
version = 4.3.1
version = 4.4.0

ANDROID_MIN_SDK_VERSION=14
ANDROID_TARGET_SDK_VERSION=27
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class BugsnagNdkSetupTask extends DefaultTask {
}.each { config ->
ResolvedArtifact artifact = config.resolvedConfiguration.resolvedArtifacts.find {
String identifier = it.id.componentIdentifier.toString()
identifier.contains("bugsnag-android-ndk") && it.file != null
identifier.contains("bugsnag-android") && it.file != null
}
if (artifact) {
File artifactFile = artifact.file
Expand Down

0 comments on commit 47f1200

Please sign in to comment.