<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic What version of the XDK do in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030886#M41951</link>
    <description>&lt;P&gt;What version of the XDK do you have installed? 1912 is the latest. 1878 had an issue where plugins got confused sometimes. Install the latest, then create a new project and copy your html/javascript to the new project and select the plugins you require and try building again.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2015 13:42:22 GMT</pubDate>
    <dc:creator>John_H_Intel2</dc:creator>
    <dc:date>2015-04-20T13:42:22Z</dc:date>
    <item>
      <title>Including Cordova on building fails</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030885#M41950</link>
      <description>&lt;P&gt;Hello everyone,&lt;BR /&gt;
	&lt;BR /&gt;
	I wrote an app which includes Cordova (In App-Browsing etc.). On&amp;nbsp;my Android 5.1 device using "Intel App Preview" everything works great. But when I build my application and install it on&amp;nbsp;the same&amp;nbsp;device, some things doesn´t work. I can´t open web content inside an iframe for example. I use the new "Cordova Hybrid Mobile App Platform"-method to build my app. When I use the legacy method, everything works fine, but the .apk file is 6 MB larger here.&lt;/P&gt;

&lt;P&gt;I thought, that I would do something wrong, but I have the same problem with example programs from other authors. I also installed Intel XDK on another "clean" Windows 8.1 machine, but the same error occurs here, too. It also occurs, even when I start a&amp;nbsp;fresh new app.&lt;/P&gt;

&lt;P&gt;Is there a current problem with the build server?&lt;/P&gt;

&lt;P&gt;Yours&lt;BR /&gt;
	Jochen M.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Apr 2015 19:27:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030885#M41950</guid>
      <dc:creator>Jochen_M_</dc:creator>
      <dc:date>2015-04-18T19:27:39Z</dc:date>
    </item>
    <item>
      <title>What version of the XDK do</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030886#M41951</link>
      <description>&lt;P&gt;What version of the XDK do you have installed? 1912 is the latest. 1878 had an issue where plugins got confused sometimes. Install the latest, then create a new project and copy your html/javascript to the new project and select the plugins you require and try building again.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 13:42:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030886#M41951</guid>
      <dc:creator>John_H_Intel2</dc:creator>
      <dc:date>2015-04-20T13:42:22Z</dc:date>
    </item>
    <item>
      <title>Instead of an iframe, why</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030887#M41952</link>
      <description>&lt;P&gt;Instead of an iframe, why dont you use the Cordova inappbrowser plugin?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 18:17:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030887#M41952</guid>
      <dc:creator>John_H_Intel2</dc:creator>
      <dc:date>2015-04-20T18:17:49Z</dc:date>
    </item>
    <item>
      <title>P. S. the "InAppBrowser"</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030888#M41953</link>
      <description>&lt;P&gt;P. S. the "InAppBrowser" plugin is selected in the properties.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 19:07:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030888#M41953</guid>
      <dc:creator>Jochen_M_</dc:creator>
      <dc:date>2015-04-20T19:07:12Z</dc:date>
    </item>
    <item>
      <title>Hi Jochen,</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030889#M41954</link>
      <description>&lt;P&gt;Hi Jochen,&lt;/P&gt;

&lt;P&gt;When you built the iFrame app, did you use the URL that came with the app or change it?&lt;/P&gt;

&lt;P&gt;Some URLs do not render in iFrame due to security issues. You best bet is the InAppBrowser plugin. Here is the link to its documentation:&amp;nbsp;http://docs.phonegap.com/en/edge/cordova_inappbrowser_inappbrowser.md.html&lt;/P&gt;

&lt;P&gt;For example, if you want to display the webpage in the click of a button, this is all you have to do:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; $(document).on("click", ".uib_w_3", function(evt)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* your code goes here */&amp;nbsp;&lt;BR /&gt;
	&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var ref = window.open('https://software.intel.com/en-us/xdk/articles/android-splash-screens-using-nine-patch-png', '_blank', 'location=yes');&lt;/STRONG&gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2015 23:39:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030889#M41954</guid>
      <dc:creator>Anusha_M_Intel1</dc:creator>
      <dc:date>2015-04-23T23:39:07Z</dc:date>
    </item>
    <item>
      <title>Thank you! In Intel APP</title>
      <link>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030890#M41955</link>
      <description>&lt;P&gt;Thank you! In Intel APP Preview it works fine again, but when I build the APP, it doesn't work anymore. Strange...&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2015 06:12:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Including-Cordova-on-building-fails/m-p/1030890#M41955</guid>
      <dc:creator>Jochen_M_</dc:creator>
      <dc:date>2015-04-24T06:12:37Z</dc:date>
    </item>
  </channel>
</rss>

