<?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 Android .APK problem in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Android-APK-problem/m-p/1059533#M53443</link>
    <description>&lt;P lingdex="0" style="font-size: 12px;"&gt;In the emulator the web service works.&amp;nbsp;When build and install .apk does not work.&lt;/P&gt;

&lt;P lingdex="1" style="font-size: 12px;"&gt;En el emulador el servicio web funciona.&amp;nbsp;Cuando compila y se instala el .apk no funciona.&lt;/P&gt;

&lt;P&gt;&lt;IMG alt="" src="https://lh6.googleusercontent.com/NUyadG52_Ylt9wbIdwmq3Y3rdYZsXFAaYuwOeRP-gr-N6Iw7PtV8atuBK-XDmRs4Vf2rrihpuFFAzOo=w1342-h533" /&gt;&lt;/P&gt;

&lt;P lingdex="3" style="font-size: 12px;"&gt;URL web Service: &amp;nbsp;&lt;A href="http://solucionesapps.co/intelxdk/webServiceSlim/books/" rel="nofollow"&gt;http://solucionesapps.co/intelxdk/webServiceSlim/books/&lt;/A&gt;&lt;/P&gt;

&lt;P lingdex="4" style="font-size: 12px;"&gt;&lt;SPAN style="font-weight: 700;"&gt;code app.js&lt;/SPAN&gt;&lt;/P&gt;

&lt;P lingdex="5" style="font-size: 12px;"&gt;function myEventHandler() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; "use strict" ;&lt;/P&gt;

&lt;P lingdex="6" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; var ua = navigator.userAgent ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var str ;&lt;/P&gt;

&lt;P lingdex="7" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; if( window.Cordova &amp;amp;&amp;amp; dev.isDeviceReady.c_cordova_ready__ ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "It worked! Cordova device ready detected at " + dev.isDeviceReady.c_cordova_ready__ + " milliseconds!" ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; else if( window.intel &amp;amp;&amp;amp; intel.xdk &amp;amp;&amp;amp; dev.isDeviceReady.d_xdk_ready______ ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "It worked! Intel XDK device ready detected at " + dev.isDeviceReady.d_xdk_ready______ + " milliseconds!" ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "Bad device ready, or none available because we're running in a browser." ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P lingdex="8" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; console.log(str) ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var completeUrl = '&lt;A href="http://solucionesapps.co/intelxdk/webServiceSlim/books/"&gt;http://solucionesapps.co/intelxdk/webServiceSlim/books/&lt;/A&gt;';&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //$("#resutlado").html(completeUrl);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.ajax({&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: completeUrl,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: 'GET',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dataType: 'json'})&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .then(function(response){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(response);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var items = [];&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.each( response[14], function( key, val ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(!/^([0-9])*$/.test(key)){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; items.push( "&amp;lt;li&amp;gt;" + key + "= " + val + "&amp;lt;/li&amp;gt;" );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#resutlado").html('.then &amp;lt;br&amp;gt;' + items );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .fail(function(err){ &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#resutlado").html('.fail+ ' + err.responseText);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P lingdex="8" style="font-size: 12px;"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 22 Mar 2015 16:16:58 GMT</pubDate>
    <dc:creator>Charles_Richar_T_</dc:creator>
    <dc:date>2015-03-22T16:16:58Z</dc:date>
    <item>
      <title>Android .APK problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Android-APK-problem/m-p/1059533#M53443</link>
      <description>&lt;P lingdex="0" style="font-size: 12px;"&gt;In the emulator the web service works.&amp;nbsp;When build and install .apk does not work.&lt;/P&gt;

&lt;P lingdex="1" style="font-size: 12px;"&gt;En el emulador el servicio web funciona.&amp;nbsp;Cuando compila y se instala el .apk no funciona.&lt;/P&gt;

&lt;P&gt;&lt;IMG alt="" src="https://lh6.googleusercontent.com/NUyadG52_Ylt9wbIdwmq3Y3rdYZsXFAaYuwOeRP-gr-N6Iw7PtV8atuBK-XDmRs4Vf2rrihpuFFAzOo=w1342-h533" /&gt;&lt;/P&gt;

&lt;P lingdex="3" style="font-size: 12px;"&gt;URL web Service: &amp;nbsp;&lt;A href="http://solucionesapps.co/intelxdk/webServiceSlim/books/" rel="nofollow"&gt;http://solucionesapps.co/intelxdk/webServiceSlim/books/&lt;/A&gt;&lt;/P&gt;

&lt;P lingdex="4" style="font-size: 12px;"&gt;&lt;SPAN style="font-weight: 700;"&gt;code app.js&lt;/SPAN&gt;&lt;/P&gt;

&lt;P lingdex="5" style="font-size: 12px;"&gt;function myEventHandler() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; "use strict" ;&lt;/P&gt;

&lt;P lingdex="6" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; var ua = navigator.userAgent ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var str ;&lt;/P&gt;

&lt;P lingdex="7" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; if( window.Cordova &amp;amp;&amp;amp; dev.isDeviceReady.c_cordova_ready__ ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "It worked! Cordova device ready detected at " + dev.isDeviceReady.c_cordova_ready__ + " milliseconds!" ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; else if( window.intel &amp;amp;&amp;amp; intel.xdk &amp;amp;&amp;amp; dev.isDeviceReady.d_xdk_ready______ ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "It worked! Intel XDK device ready detected at " + dev.isDeviceReady.d_xdk_ready______ + " milliseconds!" ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; str = "Bad device ready, or none available because we're running in a browser." ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P lingdex="8" style="font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; console.log(str) ;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var completeUrl = '&lt;A href="http://solucionesapps.co/intelxdk/webServiceSlim/books/"&gt;http://solucionesapps.co/intelxdk/webServiceSlim/books/&lt;/A&gt;';&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //$("#resutlado").html(completeUrl);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.ajax({&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: completeUrl,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: 'GET',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dataType: 'json'})&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .then(function(response){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(response);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var items = [];&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.each( response[14], function( key, val ) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(!/^([0-9])*$/.test(key)){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; items.push( "&amp;lt;li&amp;gt;" + key + "= " + val + "&amp;lt;/li&amp;gt;" );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#resutlado").html('.then &amp;lt;br&amp;gt;' + items );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .fail(function(err){ &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#resutlado").html('.fail+ ' + err.responseText);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P lingdex="8" style="font-size: 12px;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2015 16:16:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Android-APK-problem/m-p/1059533#M53443</guid>
      <dc:creator>Charles_Richar_T_</dc:creator>
      <dc:date>2015-03-22T16:16:58Z</dc:date>
    </item>
    <item>
      <title>I finally found the solution,</title>
      <link>https://community.intel.com/t5/Software-Archive/Android-APK-problem/m-p/1059534#M53444</link>
      <description>&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;I finally found the solution,&amp;nbsp;&lt;/P&gt;

&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;&lt;A href="http://rc-code.blogspot.com/2015/03/intel-xdk-android-apk-problem-in.html"&gt;http://rc-code.blogspot.com/2015/03/intel-xdk-android-apk-problem-in.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2015 23:10:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Android-APK-problem/m-p/1059534#M53444</guid>
      <dc:creator>Charles_Richar_T_</dc:creator>
      <dc:date>2015-03-25T23:10:51Z</dc:date>
    </item>
  </channel>
</rss>

