File tree Expand file tree Collapse file tree 2 files changed +7
-19
lines changed
sentry-android-distribution/src/main/java/io/sentry/android/distribution Expand file tree Collapse file tree 2 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public object Distribution {
6565 public fun downloadUpdate (context : Context , info : UpdateInfo ) {
6666 val browserIntent = Intent (Intent .ACTION_VIEW , Uri .parse(info.downloadUrl))
6767 browserIntent.addFlags(Intent .FLAG_ACTIVITY_NEW_TASK )
68-
68+
6969 try {
7070 context.startActivity(browserIntent)
7171 } catch (e: android.content.ActivityNotFoundException ) {
Original file line number Diff line number Diff line change 11package io.sentry.android.distribution
22
3- /* *
4- * Configuration options for Sentry Build Distribution.
5- */
3+ /* * Configuration options for Sentry Build Distribution. */
64public class DistributionOptions (
7- /* *
8- * Organization authentication token for API access
9- */
5+ /* * Organization authentication token for API access */
106 public val orgAuthToken : String ,
11- /* *
12- * Sentry organization slug
13- */
7+ /* * Sentry organization slug */
148 public val organizationSlug : String ,
15- /* *
16- * Sentry project slug
17- */
9+ /* * Sentry project slug */
1810 public val projectSlug : String ,
19- /* *
20- * Base URL for Sentry API (defaults to https://sentry.io)
21- */
11+ /* * Base URL for Sentry API (defaults to https://sentry.io) */
2212 public val sentryBaseUrl : String = " https://sentry.io" ,
23- /* *
24- * Optional build configuration name for filtering
25- */
13+ /* * Optional build configuration name for filtering */
2614 public val buildConfiguration : String? = null ,
2715)
You can’t perform that action at this time.
0 commit comments