I just installed react native debugger on my mac. other thing working fine but source code of app in source tab not showing.

It may related to https://github.com/facebook/react-native/issues/18416, but I don't know if you're on Android. Please provide more info by use the issue template.
I met the same issue.
the code used to connect my store to react native debugger is showed below:
`import { createStore, combineReducers, compose } from 'redux';
import placesReducer from './reducers/places';
const rootReducer = combineReducers({
places: placesReducer
});
let composeEnhancers = compose;
if(__DEV__){
composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
};
const configureStore = () => {
return createStore(rootReducer,composeEnhancers());
};
export default configureStore;`
@jhen0409 i am using android emulator and also source code is not showing in Chrome Developer Tools.
using following version for react and react native:
react-native version 0.55.2
react 16.3.1
@theideasaler thanks, for me it was:
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
I-m having the same issue, same code as @theideaSaler
I have the same issue sometimes and I can solve that by followed https://github.com/facebook/react-native/issues/18416#issuecomment-378985119. (react-native start --reset-cache)
It looks like upstream issue, please subscribe https://github.com/facebook/react-native/issues/18416 as well.
I had this issue as well with RN 0.54. It would connect fine, redux devtools worked, but localhost:8081 would not appear with my source files. One thing that usually worked was stopping and restarting the metro packager, then just reloading the app.
Since moving to RN 0.56 that is gone, localhost:8081 appears everytime in the source listing right after connecting.
[Now though, I am facing a different issue with 0.56 where the android emulator does not respond to most touch events only when connected in the debugger .. hopefully I can get through that. Not debugging or on the physical device is fine. Attach the debugger, buttons etc do not work. ?]
Restart your metro bundler
react-native start --reset-cache
Most helpful comment
I have the same issue sometimes and I can solve that by followed https://github.com/facebook/react-native/issues/18416#issuecomment-378985119. (
react-native start --reset-cache)It looks like upstream issue, please subscribe https://github.com/facebook/react-native/issues/18416 as well.