Skip to content

Commit

Permalink
Update docs, sentry-android and sentry-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Jun 23, 2017
1 parent ed23497 commit 479fb0e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ android {

dependencies {
compile 'com.facebook.react:react-native:+'
compile 'io.sentry:sentry-android:1.0.0'
compile 'io.sentry:sentry-android:1.2.1'
}
2 changes: 1 addition & 1 deletion android/src/main/java/io/sentry/RNSentryModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void onSuccess(Event event) {
RNSentryEventEmitter.sendEvent(reactContext, RNSentryEventEmitter.SENTRY_EVENT_SENT_SUCCESSFULLY, params);
}
});
sentryClient.addShouldSendEvent(new ShouldSendEventCallback() {
sentryClient.addShouldSendEventCallback(new ShouldSendEventCallback() {
@Override
public boolean shouldSend(Event event) {
// We don't want to send events that are from ExceptionsManagerModule.
Expand Down
2 changes: 1 addition & 1 deletion docs/config.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Additional Configuration
========================
------------------------

These are functions you can call in your javascript code:

Expand Down
7 changes: 7 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ Note: When you run ``react-native link`` we will automatically update your
You can pass additional configuration options to the `config()` method if
you want to do so.

Mixed Stacktraces
-----------------

Currently we only support mixed stacktraces on iOS. By default this feature is
enabled. If you encounter performance issues we recommend try turning it
off ``deactivateStacktraceMerging: true`` see: :doc:`config`.

Deep Dive
---------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"glob": "7.1.1",
"inquirer": "3.0.6",
"raven-js": "^3.16.0",
"sentry-cli-binary": "^1.13.3",
"sentry-cli-binary": "^1.16.0",
"xcode": "0.9.3"
},
"rnpm": {
Expand Down

0 comments on commit 479fb0e

Please sign in to comment.