Open nathan-ahn opened 1 year ago
Is there a way to make react-native-app-clip supportsTablet: true
and not fail building?
The original app I'm trying to make a clip for supported tablets and Apple will not let an app drop support for tablets if it had supported it at one point so I cannot submit if supportsTablet is false and I cannot build if supportsTablet is true.
Detection
EAS build failing due to
error: The UIDeviceFamily of an App Clip ('[1]') must be equal to the UIDeviceFamily of its containing parent app ('[1, 2]').
. After manually building and viewing in Xcode, the main app target supports iPhone, iPad, and Mac while the app clip supports only iPhone and Mac.Minimum Reproducible Example
create-expo-app
version 2.1.1react-native-app-clip
version 0.2.4react-native-app-clip
plugin config to include a name (likely irrelevant, but might be messing with the plugin config defaults)Temporary Fix
Remove tablet support from the main app (
supportsTablet: false
). For obvious reasons, not an ideal fix. I'm sure one could better fix this by manually adding tablet support in the app clip'sInfo.plist
.Suggested Fix
Conditionally add iPad as a supported destination based on the value of
supportsTablet
.