File tree Expand file tree Collapse file tree 4 files changed +2
-14
lines changed Expand file tree Collapse file tree 4 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -98,8 +98,7 @@ def reactNativeArchitectures() {
98
98
99
99
instabug {
100
100
apm {
101
- // networkEnabled = true
102
- // debugEnabled = true
101
+ networkEnabled = true
103
102
}
104
103
}
105
104
android {
Original file line number Diff line number Diff line change 12
12
<certificates src =" user" />
13
13
</trust-anchors >
14
14
</base-config >
15
-
16
- <debug-overrides >
17
- <trust-anchors >
18
- <!-- Trust user added CAs while debuggable only -->
19
- <certificates src =" user" />
20
- <certificates src =" system" />
21
- </trust-anchors >
22
- </debug-overrides >
23
15
</network-security-config >
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import { RootTabNavigator } from './navigation/RootTab';
16
16
import { nativeBaseTheme } from './theme/nativeBaseTheme' ;
17
17
import { navigationTheme } from './theme/navigationTheme' ;
18
18
19
- // import { QueryClient } from 'react-query';
20
19
import { QueryClient , QueryClientProvider } from 'react-query' ;
21
20
22
21
const queryClient = new QueryClient ( ) ;
@@ -26,7 +25,6 @@ const queryClient = new QueryClient();
26
25
export const App : React . FC = ( ) => {
27
26
useEffect ( ( ) => {
28
27
Instabug . init ( {
29
- // token: 'deb1910a7342814af4e4c9210c786f35',
30
28
token : '0fcc87b8bf731164828cc411eccc802a' ,
31
29
invocationEvents : [ InvocationEvent . floatingButton ] ,
32
30
debugLogsLevel : LogLevel . verbose ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ import type { ReproConfig } from '../models/ReproConfig';
36
36
import type { FeatureFlag } from '../models/FeatureFlag' ;
37
37
import { addAppStateListener } from '../utils/AppStatesHandler' ;
38
38
import InstabugConstants from '../utils/InstabugConstants' ;
39
- import instabugConstants from '../utils/InstabugConstants' ;
40
39
import { NativeNetworkLogger } from '../native/NativeNetworkLogger' ;
41
40
42
41
let _currentScreen : string | null = null ;
@@ -241,7 +240,7 @@ const checkNativeInterceptionForIOS = (config: InstabugConfig) => {
241
240
shouldEnableNativeInterception = false ;
242
241
NetworkLogger . setEnabled ( true ) ; // rollback to JS interceptor
243
242
console . error (
244
- InstabugConstants . IBG_APM_TAG + instabugConstants . NATIVE_INTERCEPTION_DISABLED_MESSAGE ,
243
+ InstabugConstants . IBG_APM_TAG + InstabugConstants . NATIVE_INTERCEPTION_DISABLED_MESSAGE ,
245
244
) ;
246
245
}
247
246
}
You can’t perform that action at this time.
0 commit comments