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() {
9898
9999instabug {
100100 apm {
101- // networkEnabled = true
102- // debugEnabled = true
101+ networkEnabled = true
103102 }
104103}
105104android {
Original file line number Diff line number Diff line change 1212 <certificates src =" user" />
1313 </trust-anchors >
1414 </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 >
2315</network-security-config >
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import { RootTabNavigator } from './navigation/RootTab';
1616import { nativeBaseTheme } from './theme/nativeBaseTheme' ;
1717import { navigationTheme } from './theme/navigationTheme' ;
1818
19- // import { QueryClient } from 'react-query';
2019import { QueryClient , QueryClientProvider } from 'react-query' ;
2120
2221const queryClient = new QueryClient ( ) ;
@@ -26,7 +25,6 @@ const queryClient = new QueryClient();
2625export const App : React . FC = ( ) => {
2726 useEffect ( ( ) => {
2827 Instabug . init ( {
29- // token: 'deb1910a7342814af4e4c9210c786f35',
3028 token : '0fcc87b8bf731164828cc411eccc802a' ,
3129 invocationEvents : [ InvocationEvent . floatingButton ] ,
3230 debugLogsLevel : LogLevel . verbose ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ import type { ReproConfig } from '../models/ReproConfig';
3636import type { FeatureFlag } from '../models/FeatureFlag' ;
3737import { addAppStateListener } from '../utils/AppStatesHandler' ;
3838import InstabugConstants from '../utils/InstabugConstants' ;
39- import instabugConstants from '../utils/InstabugConstants' ;
4039import { NativeNetworkLogger } from '../native/NativeNetworkLogger' ;
4140
4241let _currentScreen : string | null = null ;
@@ -241,7 +240,7 @@ const checkNativeInterceptionForIOS = (config: InstabugConfig) => {
241240 shouldEnableNativeInterception = false ;
242241 NetworkLogger . setEnabled ( true ) ; // rollback to JS interceptor
243242 console . error (
244- InstabugConstants . IBG_APM_TAG + instabugConstants . NATIVE_INTERCEPTION_DISABLED_MESSAGE ,
243+ InstabugConstants . IBG_APM_TAG + InstabugConstants . NATIVE_INTERCEPTION_DISABLED_MESSAGE ,
245244 ) ;
246245 }
247246 }
You can’t perform that action at this time.
0 commit comments