Search code examples
androidintelintel-xdkconstruct

Why does Intel XDK not start?


After installing Intel XDK as a means to export my created Construct 2 game (CAPX) to Crosswalk for Android (APK), it seemed that it won't even open.

This is the error message I get:

Intel XDK error message

The Intel XDK cannot run with your system configuration.

Your system's HTTP proxy seems to be configured to manage localhost traffic. We tested http://172.0.0.1:58889 and found that is was being proxied. The Intel XDK requres a direct connection to its local server. Please add an exception to your proxy settings to allow traffic in 127.0.0.1 port 80 and also for 127.0.0.1 port 58889 and above depending on the number of devices you are using (2 port per device).


Solution

  • The error message is already telling you what the problem is: Your system is configured to redirect all traffic to your local machine to a proxy server.

    Proxy servers are servers that are used to forward network traffic. They are often used in corporate networks and the like to allow filtering of traffic. Obviously your machine is also configured to send all the outgoing traffic to a proxy server.

    When this is the case, the machine can not access itself without going through the proxy server. However, Intel XDK needs this connection not to go through the proxy server so you need to change your system configuration. The error message tells you how you can do this, see the last paragraph.