Git Product home page Git Product logo

Comments (4)

mewebranding avatar mewebranding commented on August 27, 2024 1

<preference name="scheme" value="app" />

added this, it works very well!! thank you very much for your help :)

from cordova-ios.

breautek avatar breautek commented on August 27, 2024

console reports "Failed to resolve host network app id" (btw, Safari in the XCode emulator can access API hosts)

This doesn't really sound like an error that cordova throws really. Is this error being shown in XCode console or the web console?

Also can you share your config.xml file?

from cordova-ios.

mewebranding avatar mewebranding commented on August 27, 2024

this error is shown in XCode console.

<?xml version='1.0' encoding='utf-8'?> <widget id="com.helloworld.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>HelloWorld</name> <description>Sample Apache Cordova App</description> <author email="[email protected]" href="https://cordova.apache.org"> Apache Cordova Team </author> <content src="index.html" /> <allow-intent href="http://*/*" /> <allow-intent href="https://*/*" /> </widget>

from cordova-ios.

breautek avatar breautek commented on August 27, 2024

I'm not really sure, but I definitely don't reproduce this though I don't use the VueJS framework as well. So I think this is more of a VueJS integration issue. It is possible that it assumes are more traditional web environment where you have a server, with a domain, etc... These things doesn't necessary exist in a webview environment.

Couple of things you can try:

Enabling url schemes

iOS webview has a concept of schemes, by default has this disabled. This means that you're web app is loaded over the file:// protocol, which the means the document has a null origin, and the webview considers the document insecure and will disable a lot of different features.

If you add a platform block in your config with the scheme and hostname preferences, it will enable the url scheme, which means you're document will be proxied through something that looks like a server and the document will have a proper origin and will be considered secure, for the purposes of enabling features locked normally locked behind https.

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.helloworld.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  <name>HelloWorld</name>
  <description>Sample Apache Cordova App</description>
  <author email="[email protected]" href="https://cordova.apache.org"> Apache Cordova Team </author>
  <content src="index.html" />
  <allow-intent href="http://*/*" />
  <allow-intent href="https://*/*" />
  <platform name="ios">
    <preference name="scheme" value="app" />
    <preference name="hostname" value="localhost" />
  </platform>
</widget>

Couple of things to note:

  1. We use the platform block because android also accept these preferences for their equivalent system, but iOS and android has different requirements where Android only accepts http or https as the scheme and iOS requires you to use a non-reserved scheme where http and https are reserved. This is why we choose something more custom, like app for our ios scheme.

  2. Android defaults to https://localhost as the scheme instead of the file:// protocol strategy, which may explain why VueJS works under the android webview out of the box.

Possibility of finding more insights

If the above fails... then we probably need to get more insights. I think on iOS, xcode will still log JS console messages, but if it is a message from JS, the web inspector may have more insightful information.

If you don't know how to use the Safari remote inspector, I have a blog post that describes how, just scroll down to the iOS section.

The key thing though is safari web inspector doesn't capture events that occurred before the inspector was attached, so in order to see log messages, network errors, or any debug information that occurred on launch, you'll need to refresh the webview with the inspector attached. This can be done by pressing cmd + r on the inspector window.

from cordova-ios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.