File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 33
33
},
34
34
"dependencies" : {
35
35
"@nativescript-community/arraybuffers" : " ^1.1.5" ,
36
- "@sentry/browser" : " ^7.88.0 " ,
37
- "@sentry/core" : " ^7.88.0 " ,
38
- "@sentry/hub" : " ^7.88.0 " ,
39
- "@sentry/integrations" : " ^7.88.0 " ,
40
- "@sentry/tracing" : " ^7.88.0 " ,
41
- "@sentry/types" : " ^7.88.0 " ,
42
- "@sentry/utils" : " ^7.88.0 " ,
36
+ "@sentry/browser" : " ^7.102.1 " ,
37
+ "@sentry/core" : " ^7.102.1 " ,
38
+ "@sentry/hub" : " ^7.102.1 " ,
39
+ "@sentry/integrations" : " ^7.102.1 " ,
40
+ "@sentry/tracing" : " ^7.102.1 " ,
41
+ "@sentry/types" : " ^7.102.1 " ,
42
+ "@sentry/utils" : " ^7.102.1 " ,
43
43
"stacktrace-parser" : " ^0.1.10"
44
44
},
45
45
"gitHead" : " 1e799d9f3a3eeb19c0fc4188be82a6cded4ea727"
Original file line number Diff line number Diff line change 21
21
" io.sentry.transport:ITransportGate" ,
22
22
" io.sentry.transport:RateLimiter" ,
23
23
" io.sentry:Breadcrumb" ,
24
+ " io.sentry:Integration" ,
24
25
" io.sentry:ILogger" ,
25
26
" io.sentry:ITransportFactory" ,
26
27
" io.sentry:RequestDetails" ,
35
36
" io.sentry:SentryOptions.BeforeSendCallback" ,
36
37
" io.sentry:UncaughtExceptionHandlerIntegration" ,
37
38
" io.sentry:UserFeedback" ,
39
+ " io.sentry.android.fragment:FragmentLifecycleIntegration" ,
38
40
" java.lang:Boolean" ,
39
41
" java.lang:Integer" ,
40
42
" java.lang:Long" ,
Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ export namespace NATIVE {
480
480
if ( options . enableFragmentLifecycleBreadcrumbs !== undefined || options . enableAutoFragmentLifecycleTracing !== undefined ) {
481
481
config . addIntegration (
482
482
new io . sentry . android . fragment . FragmentLifecycleIntegration (
483
- this ,
483
+ Application . android . getNativeApplication ( ) ,
484
484
options . enableFragmentLifecycleBreadcrumbs ?? true , // enabled by default
485
485
options . enableAutoFragmentLifecycleTracing ?? false // disabled by default
486
486
)
You can’t perform that action at this time.
0 commit comments