You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried out 52 with our SDK this morning and it is compatible. Here's a few notes for your consideration:
The current Appcues SDK (4.3.0) isn't currently compatible with the New Architecture (optional with Expo 52, but enabled by default for new apps). There's an issue where embed frames aren't sized properly. We'll look into getting this fixed up.
Expo 52 aligns with @react-navigation/native. If you use anchored tooltips and navigation Tabs, make sure to update tabBarTestID to tabBarButtonTestID so that the correct identifiers are there for anchored tooltip selectors.
If you use Linking.addEventListener('url', ...) or Linking.useURL() to handle Appcues SDK deep links (ie calling Appcues.didHandleURL(url)), it seems that this doesn't work with changes in expo-linking v7 on iOS. There's a new useLinkingURL() hook that does seem to work.
The expo-linking v7 change seems to have broken react router deep link handling on iOS in our Showcase app (and in a newly created test Expo 52 project), so be sure to test and confirm that your deep links still work. I'm not clear if it's a bug in Expo, but it seems like it, given that a newly created (npx create-expo-app) app doesn't have functional file-based deep linking on iOS (eg myapp://example for the basic create-expo-app project). Here's a deep dive into what's happening:
That means the ExpoAppDelegate always returns true when opening a URL
Which means the main AppDelegate in your generated iOS project will always return true from the super call and so RCTLinkingManager doesn't get a chance to process the URL, and that's what drives Linking.addEventListener('url', ...) and Linking.useURL()
We're running on SDK 51 and I would like to upgrade to 52, is this module compatible?
The text was updated successfully, but these errors were encountered: