Tommy Romano

Results 7 comments of Tommy Romano

FWIW we fixed this by downloading the fonts directly and loading them like ```js import { useFonts } from 'expo-font'; export default function useCachedResources() { let [fontsLoaded, error] = useFonts({...

As an additional wrinkle, I even tried adding the following to the app.json infoPlist property and still got the same error: https://github.com/expo/expo/blob/2254329167f5172e1da087c2339f0f5a62790a29/packages/%40expo/config-plugins/src/plugins/withIosBaseMods.ts#L39-L46

Interesting, I’ll try that as a potential mitigation, though there certainly seems like a regression somewhere

Yep - adding ``` ios: { infoPlist: { CFBundleAllowMixedLocalizations: true, NSAppTransportSecurity: { NSExceptionDomains: { 'exp.direct': { NSIncludesSubdomains: true, NSExceptionAllowsInsecureHTTPLoads: true, }, }, }, }, } ``` to my app.config.js did...

@gabriel-moresco This issue only affected iOS for me, android was fine. I think that error is a separate problem.

Is there a workaround here? We have been stuck on this error for a while

To be more specific, here is our command executed that continues to fail: ``` deliver( submit_for_review: true, app_identifier: 'com.hidden.hidden', api_key_path: 'omitted', automatic_release: true, skip_screenshots: true, skip_binary_upload: true, submission_information: { add_id_info_uses_idfa:...