File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -2098,8 +2098,8 @@ SPEC CHECKSUMS:
2098
2098
RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d
2099
2099
RNVectorIcons: 6382277afab3c54658e9d555ee0faa7a37827136
2100
2100
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
2101
- Yoga: aa3df615739504eebb91925fc9c58b4922ea9a08
2101
+ Yoga: 055f92ad73f8c8600a93f0e25ac0b2344c3b07e6
2102
2102
2103
2103
PODFILE CHECKSUM: 29f363f85c01e13c559723cad266922d16c81bc5
2104
2104
2105
- COCOAPODS: 1.15.2
2105
+ COCOAPODS: 1.14.0
Original file line number Diff line number Diff line change @@ -54,24 +54,24 @@ export const App: React.FC = () => {
54
54
debugLogsLevel : LogLevel . verbose ,
55
55
networkInterceptionMode : NetworkInterceptionMode . javascript ,
56
56
} )
57
- . then ( ( ) => {
58
- // Post-initialization setup
59
- NetworkLogger . setNetworkDataObfuscationHandler ( async ( networkData ) => {
60
- networkData . url = `${ networkData . url } /JS/Obfuscated` ;
61
- return networkData ;
57
+ . then ( ( ) => {
58
+ // Post-initialization setup
59
+ NetworkLogger . setNetworkDataObfuscationHandler ( async ( networkData ) => {
60
+ networkData . url = `${ networkData . url } /JS/Obfuscated` ;
61
+ return networkData ;
62
+ } ) ;
63
+ APM . setScreenRenderEnabled ( true ) ;
64
+ setIsInstabugInitialized ( true ) ;
65
+ } )
66
+ . catch ( ( error ) => {
67
+ console . error ( 'Instabug initialization failed:' , error ) ;
68
+ setIsInstabugInitialized ( true ) ; // Proceed even if initialization fails
62
69
} ) ;
63
- APM . setScreenRenderEnabled ( true ) ;
64
- setIsInstabugInitialized ( true ) ;
65
- } )
66
- . catch ( ( error ) => {
67
- console . error ( 'Instabug initialization failed:' , error ) ;
68
- setIsInstabugInitialized ( true ) ; // Proceed even if initialization fails
69
- } ) ;
70
70
71
71
// Synchronous configuration that doesn't depend on init completion
72
72
CrashReporting . setNDKCrashesEnabled ( true ) ;
73
73
Instabug . setReproStepsConfig ( { all : ReproStepsMode . enabled } ) ;
74
-
74
+
75
75
// Set initialized immediately to show UI - initialization continues in background
76
76
setIsInstabugInitialized ( true ) ;
77
77
} ;
You can’t perform that action at this time.
0 commit comments