bndkt / react-native-app-clip

Easily add an App Clip for iOS apps built with React Native
https://bndkt.com/blog/2022/react-native-app-clip
446 stars 19 forks source link

Build fails due to mismatch in tablet configuration #24

Open nahn20 opened 9 months ago

nahn20 commented 9 months ago

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

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's Info.plist.

Suggested Fix

Conditionally add iPad as a supported destination based on the value of supportsTablet.