Skip to content
This repository was archived by the owner on Sep 14, 2020. It is now read-only.

Commit 14ca0f4

Browse files
v2.20.0
2 parents 8c1ed58 + 1e386b7 commit 14ca0f4

9 files changed

Lines changed: 18 additions & 262 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ scenario.json
1717
android/local.properties
1818
android/android.iml
1919
test/tmp
20+
.gradle

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
Changelog
22
=========
33

4-
## TBD
4+
## 2.20.0 (2019-05-29)
5+
6+
This release updates the package's Gradle build script to use `api` and `implementation` rather than the deprecated
7+
`compile` syntax. If you are using v2.X of the Android Gradle Plugin, you will need to upgrade to v3.X of
8+
the [Android Gradle Plugin](https://developer.android.com/studio/releases/gradle-plugin#updating-plugin),
9+
and [upgrade your gradle wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html#sec:upgrading_wrapper).
10+
11+
* Update deprecated compile dependencies to use implementation/api
12+
[#362](https://github.com/bugsnag/bugsnag-react-native/pull/362)
13+
14+
* Remove unnecessary gradlew from android directory, reducing artefact bundle size
15+
[#363](https://github.com/bugsnag/bugsnag-react-native/pull/363)
516

617
### Bug fixes
718

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Bugsnag exception reporter for React Native
2-
[![Documentation](https://img.shields.io/badge/documentation-2.19.1-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)
2+
[![Documentation](https://img.shields.io/badge/documentation-2.20.0-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)
33

44
Automatic [React Native crash reporting](https://www.bugsnag.com/platforms/react-native-error-reporting/) with Bugsnag helps you detect both native OS and JavaScript errors in your React Native apps.
55

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
minSdkVersion safeExtGet('minSdkVersion', 16)
1313
targetSdkVersion safeExtGet('targetSdkVersion', 26)
1414
versionCode 4
15-
versionName '2.19.1'
15+
versionName '2.20.0'
1616
consumerProguardFiles 'proguard-rules.pro'
1717
}
1818
lintOptions {
@@ -23,8 +23,8 @@ android {
2323
}
2424

2525
dependencies {
26-
compile 'com.bugsnag:bugsnag-android:4.14.2'
27-
compile 'com.facebook.react:react-native:+'
26+
api 'com.bugsnag:bugsnag-android:4.14.2'
27+
implementation 'com.facebook.react:react-native:+'
2828
}
2929

3030
apply plugin: 'checkstyle'
-52.4 KB
Binary file not shown.

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 6 deletions
This file was deleted.

android/gradlew

Lines changed: 0 additions & 160 deletions
This file was deleted.

android/gradlew.bat

Lines changed: 0 additions & 90 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"homepage": "https://www.bugsnag.com/platforms/react-native-error-reporting/",
44
"repository": "https://github.com/bugsnag/bugsnag-react-native.git",
55
"bugs": "https://github.com/bugsnag/bugsnag-react-native/issues",
6-
"version": "2.19.1",
6+
"version": "2.20.0",
77
"license": "MIT",
88
"main": "index.js",
99
"types": "index.d.ts",

0 commit comments

Comments
 (0)