3

最近我退出了一个托管工作流项目,现在我在裸工作流上,到目前为止一切进展顺利。

我能够添加本机库并且工作正常,例如段的 analytics-react-native,并且我已经为 iOS 和 android 设备创建了一个构建来运行开发客户端(而不是 Expo Go)。但是现在我想添加一个 composerEnhancer 来在 react-native-debugger 应用程序上查看我的商店,并且在设置之后我只是得到“找不到商店。确保按照浏览器选项卡上的说明进行操作。

import { combineReducers, createStore, applyMiddleware } from "redux";
import { composeWithDevTools } from "redux-devtools-extension";
import ReduxThunk from "redux-thunk";

const rootReducer = combineReducers({
  auth: authReducer,
  cart: cartReducer,
});

const store = createStore(
  rootReducer, 
  composeWithDevTools(
    applyMiddleware(ReduxThunk)
  )
);

return (
    <Provider store={store}>
      <Navigation />
    </Provider>
  );
}

我在使用 Exgo Go Client 的 Bare 工作流程中尝试了相同的配置,并且运行良好。但是我不能让它在自定义开发客户端上运行,有什么想法吗?

4

0 回答 0