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
{{ message }}
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
Which platform(s) does your issue occur on?
iOS - 15.6
Please, provide the following version numbers that your issue occurs with:
CLI: 8.3.2
iOS: XCode version 13.4.1
nodejs: v14.18.0
Runtime(s): 8.3.2
Plugin(s): ^8.0.2
First of all, thank you for this plugin. I have a line of code that fetches a png file from local to the webview. It works perfectly fine on simulator or debug on real iphone device but when i test it on Testflight build, it return TypeError: Load failed.
I suspect it might related to cors issues but im not sure cause everything is working fine on simulator. Is there any special set up that i need to do for this? Please advice.
The text was updated successfully, but these errors were encountered:
It sounds like you were right about the cors problem, but I'm unsure how to help.
You might be able to get more information from XCode and look at the native log. Look for "CustomUrlSchemeHandler"
You should be able to make a "release" build locally and run it on your device or simulator.
Which platform(s) does your issue occur on?
iOS - 15.6
Please, provide the following version numbers that your issue occurs with:
CLI: 8.3.2
iOS: XCode version 13.4.1
nodejs: v14.18.0
Runtime(s): 8.3.2
Plugin(s): ^8.0.2
First of all, thank you for this plugin. I have a line of code that fetches a png file from local to the webview. It works perfectly fine on simulator or debug on real iphone device but when i test it on Testflight build, it return TypeError: Load failed.
Loading local resource :
this.e_sphereWebView.registerLocalResource('info', '~/app/assets/images/shared/info.png'),
Fetching from webview.js :
const fetchInfoSign1 = fetch('x-local://info') .then(response => response.blob()) .then(imageBlob => URL.createObjectURL(imageBlob)) .catch((error) => { console.dir(error) window.nsWebViewBridge.emit("log", error); window.alert("GetInfoSign " + error); });
I suspect it might related to cors issues but im not sure cause everything is working fine on simulator. Is there any special set up that i need to do for this? Please advice.
The text was updated successfully, but these errors were encountered: