ling jia

Results 8 comments of ling jia

@tourze 救急方案:拷贝podspec到自己的项目里面,然后 pod install 的时候 cp podspec node_module/react-native-wechat里 Podfile ```ruby # 没有podspec支持,就直接拷贝一份进去 FileUtils.cp './podspec_fake/react-native-pdf-view/react-native-pdf-view.podspec', '../node_modules/react-native-pdf-view/react-native-pdf-view.podspec' ```

If you find wepack.config of v3, you can check this https://github.com/callstack/repack/tree/v3/templates or https://github.com/callstack/repack-examples

try `react-native start --host 0.0.0.0`

`TypeError: Network request failed` related to this: ```sh http://0.0.0.0:8081/android/main.fbfa517e3f128709cbc7.hot-update.json ``` HMR will fetch the update infomation, check your server or network. Maybe your scenario is in a docker container used...

until it release, I have to copy the podspec from my project to `node_modules` when `pod install` . Podfile ```ruby FileUtils.cp './podspec_fake/react-native-photo-view/react-native-photo-view.podspec', '../node_modules/react-native-photo-view/react-native-photo-view.podspec' ```

hi @david1820 , manually copy the `react-native-photo-view.podspec` to `node_modules/react-native-photo-view/' still get the error?

directly use git repo like this in your package.json ```js "dependencies": { "react-native-photo-view": "https://github.com/alwx/react-native-photo-view", } ```

Currently, the only way to implement this fix is to make code changes in the local repository before the maintainer merges this PR ```toml hf-hub = { path = "/path/to/hf-hub",...