diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-03-13 17:41:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 12:11:01 +0000 |
commit | 861ca58a58675e5f063072b7f31e8cefeaaeaed5 (patch) | |
tree | 1f886ec49d4742be01747d8590aa7d3edd4a7499 /app/src/nonFree/AndroidManifest.xml | |
parent | 20725219bdc482480ad7130cd2b3829ae24384a8 (diff) |
Configure Sentry with more information (#1782)
* build-logic: remove error path in Sentry plugin
* gradle: fix UnstableApiUsage warning
* build-logic: configure Sentry Gradle Plugin
* app: set traces sample-rate to 1.0
* sentry-stub: init
* app: populate Sentry user field with feature flags
Diffstat (limited to 'app/src/nonFree/AndroidManifest.xml')
-rw-r--r-- | app/src/nonFree/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/nonFree/AndroidManifest.xml b/app/src/nonFree/AndroidManifest.xml index 2f8d2746..83103b18 100644 --- a/app/src/nonFree/AndroidManifest.xml +++ b/app/src/nonFree/AndroidManifest.xml @@ -6,6 +6,6 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application> <meta-data android:name="io.sentry.dsn" android:value="${sentryDsn}" /> - <meta-data android:name="io.sentry.traces.sample-rate" android:value="0.0" /> + <meta-data android:name="io.sentry.traces.sample-rate" android:value="1.0" /> </application> </manifest> |