Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
shell: bash
run: echo MAPBOX_DOWNLOADS_TOKEN=${MAPBOX_DOWNLOADS_TOKEN} >> gradle.properties

- name: Set sentry token
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
shell: bash
run: echo SENTRY_DSN=${SENTRY_DSN} >> gradle.properties

- name: Create google-service.json file
run: cat /home/runner/work/android-app/android-app/app/src/debug/google-services.json | base64
- name: Set google-service.json data
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/one/mixin/android/MixinApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ open class MixinApplication :
}

SentryAndroid.init(this) { options ->
options.dsn = BuildConfig.SENTRYDSN
options.dsn = BuildConfig.SENTRY_DSN
options.isEnableUserInteractionTracing = false
options.isEnableUserInteractionBreadcrumbs = false
options.isEnablePerformanceV2 = true
Expand Down
Loading