You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plugin will automatically generate appropriate ProGuard mapping files and upload them when you run `gradle assemble{BuildVariant}`. For example, `assembleRelease` — Release is the default, but the plugin works for others if you have enabled ProGuard. The credentials for the upload step are loaded via environment variables.
201
+
The plugin will automatically generate appropriate ProGuard mapping files and upload them when you run `gradle assemble{BuildVariant}`. For example, `assembleRelease` — Release is the default, but the plugin works for others if you have enabled ProGuard/R8. The credentials for the upload step are loaded via environment variables.
202
202
203
203
For more information, see the [full sentry-cli documentation]({%- link _documentation/cli/configuration.md -%}#configuration-values).
204
204
@@ -242,7 +242,7 @@ sentry {
242
242
}
243
243
```
244
244
245
-
And that's it! Now when you build your app, the plugin will upload the proguard/R8 mappings,
245
+
And that's it! Now when you build your app, the plugin will upload the ProGuard/R8 mappings,
246
246
source bundle, and native symbols, as you configured them to Sentry.
247
247
248
248
## Releases
@@ -359,7 +359,8 @@ For more information, see [Tagging Events]({%- link _documentation/enriching-err
359
359
360
360
### Setting the Level
361
361
362
-
You can set the severity of an event to one of five values: `fatal`, `error`, `warning`, `info`, and `debug`. `error` is the default, `fatal` is the most severe, and `debug` is the least severe.
362
+
You can set the severity of an event to one of five values: `fatal`, `error`, `warning`, `info`, and `debug`.
363
+
`error` is the default, `fatal` is the most severe, and `debug` is the least severe.
363
364
364
365
```java
365
366
Sentry.setLevel(SentryLevel.WARNING);
@@ -538,8 +539,8 @@ You can configure which package prefixes belong in your application and which do
538
539
539
540
```java
540
541
// This can be set only during the initialization of the SDK.
541
-
SentryAndroid.init(this,options -> {
542
-
//set all sub packages of java. as packages that do not belong to your application
542
+
SentryAndroid.init(this,options -> {
543
+
//set all sub packages of java. as packages that do not belong to your application
543
544
options.addInAppExclude("java.");
544
545
545
546
// set all sub packages of io.sentry as packages that belong to your application
@@ -555,7 +556,7 @@ Sentry exposes a `beforeSend` callback, which can be used to filter out informat
555
556
The callback can be registered during the initialization of the SDK.
556
557
557
558
```java
558
-
SentryAndroid.init(this,options -> {
559
+
SentryAndroid.init(this,options -> {
559
560
560
561
// Add a callback that will be used before the event is sent to Sentry.
561
562
// With this callback, you can modify the event or, when returning null, also discard the event.
@@ -622,7 +623,7 @@ Now you can use the Sentry NDK API just by including the sentry.h in your code:
@@ -26,7 +26,7 @@ If you want to set the configuration manually in the code, you need to initializ
26
26
27
27
### Installation
28
28
29
-
The new SDK can initialize automatically; all you need to do is provide the DSN in your Manifest file, as shown in the previous example in [Configuration](#configuration).
29
+
The new SDK can initialize automatically, all you need to do is provide the DSN in your Manifest file, as shown in the previous example in [Configuration](#configuration).
30
30
31
31
**Manual Installation**
32
32
@@ -171,7 +171,7 @@ release {
171
171
}
172
172
```
173
173
174
-
And, add to the `multidex-config.pro` to the following lines:
174
+
And, add to `multidex-config.pro` the following lines:
175
175
176
176
```
177
177
-keep class io.sentry.android.core.SentryAndroidOptions
0 commit comments