SFDX-Data-Move-Utility
SFDX-Data-Move-Utility copied to clipboard
Build crashes in Expo
Build crashes while installing pods in Expo.
[!] Unable to find a specification for UMCore depended upon by EXLocalization
You have either:
- out-of-date source repos which you can update with
pod repo updateor withpod install --repo-update. - mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
[stderr] [!]
<PBXResourcesBuildPhase UUID=13B07F8E1A680F5B00A75B9A>attempted to initialize an object with an unknown UUID.6DEAD5BE8A1E4142A15F1FB5for attribute:files. This can be the result of a merge and the unknown UUID is being discarded. pod exited with non-zero code: 1
Tried all kinds stuff but just couldn't figure it out. Only thing I found is if I remove/uninstall the package, build succeeds.
We get this error as well, and a similar error when building for Android
The problem is "expo-constants" and "expo-localization" is outdated and needs upgrade, so I brought files locally it worked but didn't work well with android. So I just made my own simple function that checks(App/Play Store website) and redirects to App/Play store if there is new update (only works Expo though) but I was lazy to document and built separate npm package. If you really need it I can document sth fast and publish to npm.
I created a fork, which does not depend on expo-localization.
https://www.npmjs.com/package/expo-react-native-version-checker
Thanks but what about Android, does it work? Play Store has changed and version number hidden in popup menu.
Thanks but what about Android, does it work? Play Store has changed and version number hidden in popup menu.
Android is working currently. The play store source contains some JSON, which includes the version number, which the script extracts. The popup menu does not load extra data via ajax, all the data is already contained in JSON embedded within the original page.
Thanks but what about Android, does it work? Play Store has changed and version number hidden in popup menu.
Android is working currently. The play store source contains some JSON, which includes the version number, which the script extracts. The popup menu does not load extra data via ajax, all the data is already contained in JSON embedded within the original page.
Got it thanks, yep forgot JSON includes version number.