react-native-keys
react-native-keys copied to clipboard
Exited with status code 127 - Ios
When trying to clear the build folder , Getting the error Exited with status code 127 - Ios
π @abhishekpuresoftware Thanks for opening your issue here! If you find this package useful hit the starπ!
- 1
Is there any solution?
I think it's related to nvm but if I follow the instruction from the README.md file then I get exit code 127 (https://github.com/numandev1/react-native-keys#using-node-with-nvm-fnm-or-notion).
There was another proposed solution for this issue and with this solution I get exit code 1. (https://github.com/numandev1/react-native-keys/issues/53#issuecomment-2642439046)
Is there any solution?
I think it's related to
nvmbut if I follow the instruction from theREADME.mdfile then I get exit code 127 (https://github.com/numandev1/react-native-keys#using-node-with-nvm-fnm-or-notion).There was another proposed solution for this issue and with this solution I get exit code 1. (#53 (comment))
I had the same problem as you. Did you resolve this problem?
Is there any solution? I think it's related to
nvmbut if I follow the instruction from theREADME.mdfile then I get exit code 127 (https://github.com/numandev1/react-native-keys#using-node-with-nvm-fnm-or-notion). There was another proposed solution for this issue and with this solution I get exit code 1. (#53 (comment))I had the same problem as you. Did you resolve this problem?
Yes I managed to solve this problem.
In this comment: https://github.com/numandev1/react-native-keys/issues/53#issuecomment-2642439046 At the top there are these exports:
export DEBUG_KEYSFILE=keys.debug.json
export RELEASE_KEYSFILE=keys.release.json
And make sure that the keys.debug.json and keys.release.json are existing. In my case they had a different name.
So if you are using nvm then you could use the above mentioned comment's command but make sure to use your file names in the exports.
Hope this helps π
Is there any solution? I think it's related to
nvmbut if I follow the instruction from theREADME.mdfile then I get exit code 127 (https://github.com/numandev1/react-native-keys#using-node-with-nvm-fnm-or-notion). There was another proposed solution for this issue and with this solution I get exit code 1. (#53 (comment))I had the same problem as you. Did you resolve this problem?
Yes I managed to solve this problem.
In this comment: #53 (comment) At the top there are these exports:
export DEBUG_KEYSFILE=keys.debug.json export RELEASE_KEYSFILE=keys.release.jsonAnd make sure that the
keys.debug.jsonandkeys.release.jsonare existing. In my case they had a different name.So if you are using
nvmthen you could use the above mentioned comment's command but make sure to use your file names in the exports.Hope this helps π
Thank you so much! However, during the build process, I encountered the following error:
/Users/xxx/Documents/x-App/node_modules/react-native-keys/ios/YeetJSIUtils.h:10:9 'jsi/jsi.h' file not found
in file included from /Users/xxx/Documents/x-App/node_modules/react-native-keys/ios/YeetJSIUtils.mm:9:
If you know how to fix this, Iβd really appreciate your help.
Is there any solution? I think it's related to
nvmbut if I follow the instruction from theREADME.mdfile then I get exit code 127 (https://github.com/numandev1/react-native-keys#using-node-with-nvm-fnm-or-notion). There was another proposed solution for this issue and with this solution I get exit code 1. (#53 (comment))I had the same problem as you. Did you resolve this problem?
Yes I managed to solve this problem. In this comment: #53 (comment) At the top there are these exports:
export DEBUG_KEYSFILE=keys.debug.json export RELEASE_KEYSFILE=keys.release.jsonAnd make sure that the
keys.debug.jsonandkeys.release.jsonare existing. In my case they had a different name. So if you are usingnvmthen you could use the above mentioned comment's command but make sure to use your file names in the exports. Hope this helps πThank you so much! However, during the build process, I encountered the following error:
/Users/xxx/Documents/x-App/node_modules/react-native-keys/ios/YeetJSIUtils.h:10:9 'jsi/jsi.h' file not found in file included from /Users/xxx/Documents/x-App/node_modules/react-native-keys/ios/YeetJSIUtils.mm:9:If you know how to fix this, Iβd really appreciate your help.
Did not encountered this issue, but I would try to just delete the node_modules and re install it and do the same with pods too.
rm -rf ./node_modules ./package-lock.json && npm install && cd ./ios && pod deintegrate && pod install && cd ..
If you know how to fix this, Iβd really appreciate your help.