Open sufficientforce opened 3 weeks ago
Hey @sufficientforce, thanks for reporting! I still need to update expo-share-extension to work with react native's new architecture, which is enabled by default with expo v52. So for the time being you can only use this with v51
Thanks @MaxAst -- makes sense. FWIW I'm trying to include this change https://github.com/expo/expo/pull/31278 which is highly relevant for expo-share-extension as it makes sqlite databases sharable b/w extension and main app.
I wonder if it's cherry pickable to v51 in some way...regardless, thanks again for your work
yep I saw that change too, pretty exciting. Have you tried disabling new arch via expo-build-properties, while still running v52?
Yeah, I've had this in my build even with earlier Expo versions:
(Note: is it possible that the above error is unrelated to the new architecture and is caused by some other modification to podfile structure? Or maybe in v52 the newArchEnabled:false setting is no longer honored...?)
"plugins":` [
"expo-router",
"expo-font",
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": false
},
"android": {
"newArchEnabled": false
}
}
],
Hi @sufficientforce, have you find a temporary solution to the issue? Thanks in advance
Did anyone find a solution?
@erdkodla Did downgrading to expo v51 work for you?
I ended up just downgrading back to "expo": "~51.0.38" as suggested earlier in the thread by @MaxAst. I am also using mmkv and had to downgrade to "react-native-mmkv": "^2.12.2". And this seems to work for me.
Thank you for the incredible package, huge timesaver for my project. Great work.
After upgrading to SDK 52, something goes wrong with the build's modification of podfiles and I get this extensive error when running
npx expo prebuild -p ios --clean