<?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 barcode Scanner just work on IDE in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084370#M62881</link>
    <description>&lt;P&gt;Hello, I`m testing the barcode Scanner resource from Cordova and it is really ok on the XDK IDE, but it doesn`t work on my android.&lt;/P&gt;

&lt;P&gt;I removed the intel.XDK.Devices plugin as told on Cordova BarcodeScanner documentation but it didn`t make any efect.&lt;/P&gt;

&lt;P&gt;That is my code, thanks in advice.&lt;/P&gt;

&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;
	&amp;lt;html&amp;gt;&lt;BR /&gt;
	&amp;lt;!--&lt;BR /&gt;
	&amp;nbsp; * Please see the included README.md file for license terms and conditions.&lt;BR /&gt;
	&amp;nbsp; --&amp;gt;&lt;BR /&gt;
	&amp;lt;head&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;Blank Cordova Mobile App Project Template (Lite)&amp;lt;/title&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;meta http-equiv="Content-type" content="text/html; charset=utf-8"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- see &lt;A href="http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag" target="_blank"&gt;http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag&lt;/A&gt; --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/jquery-2.1.4.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://debug-software.intel.com/target/target-script-min.js#Rvquow84BZYHUg82EPn3DPC3rar3TCzZM_6NQXS5m04"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link href="js/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.css" rel="stylesheet" type="text/css"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link href="css/default.css" rel="stylesheet" type="text/css"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- phantom library, needed for Cordova api calls, added during build --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/app.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- recommended location of your JavaScript code relative to other JS files --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="xdk/init-dev.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- normalizes device and document ready events, see README for details --&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(document).ready(function(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#btnConsultarCodigo").click(function(){&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; &amp;nbsp;console.log("click");&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; &amp;nbsp; cordova.plugins.barcodeScanner.scan(function(resultado){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(resultado);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#codigo").val(resultado.text);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#codigo").val("Erro ao ler o código");&lt;BR /&gt;
	&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; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;lt;/head&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;div role="page"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div data-role="header"&amp;gt;Crie sua Lista&amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type="text" id="codigo"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type="button" id="btnConsultarCodigo" data-role="ui-btn ui-btn-inline" value="Consultar"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;
	&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2015 19:08:07 GMT</pubDate>
    <dc:creator>Thiago_G_</dc:creator>
    <dc:date>2015-11-25T19:08:07Z</dc:date>
    <item>
      <title>barcode Scanner just work on IDE</title>
      <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084370#M62881</link>
      <description>&lt;P&gt;Hello, I`m testing the barcode Scanner resource from Cordova and it is really ok on the XDK IDE, but it doesn`t work on my android.&lt;/P&gt;

&lt;P&gt;I removed the intel.XDK.Devices plugin as told on Cordova BarcodeScanner documentation but it didn`t make any efect.&lt;/P&gt;

&lt;P&gt;That is my code, thanks in advice.&lt;/P&gt;

&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;
	&amp;lt;html&amp;gt;&lt;BR /&gt;
	&amp;lt;!--&lt;BR /&gt;
	&amp;nbsp; * Please see the included README.md file for license terms and conditions.&lt;BR /&gt;
	&amp;nbsp; --&amp;gt;&lt;BR /&gt;
	&amp;lt;head&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;Blank Cordova Mobile App Project Template (Lite)&amp;lt;/title&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;meta http-equiv="Content-type" content="text/html; charset=utf-8"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- see &lt;A href="http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag" target="_blank"&gt;http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag&lt;/A&gt; --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/jquery-2.1.4.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://debug-software.intel.com/target/target-script-min.js#Rvquow84BZYHUg82EPn3DPC3rar3TCzZM_6NQXS5m04"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link href="js/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.css" rel="stylesheet" type="text/css"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link href="css/default.css" rel="stylesheet" type="text/css"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- phantom library, needed for Cordova api calls, added during build --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/app.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- recommended location of your JavaScript code relative to other JS files --&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="xdk/init-dev.js"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- normalizes device and document ready events, see README for details --&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(document).ready(function(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#btnConsultarCodigo").click(function(){&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; &amp;nbsp;console.log("click");&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; &amp;nbsp; cordova.plugins.barcodeScanner.scan(function(resultado){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(resultado);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#codigo").val(resultado.text);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $("#codigo").val("Erro ao ler o código");&lt;BR /&gt;
	&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; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;lt;/head&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;div role="page"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div data-role="header"&amp;gt;Crie sua Lista&amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type="text" id="codigo"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type="button" id="btnConsultarCodigo" data-role="ui-btn ui-btn-inline" value="Consultar"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;
	&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2015 19:08:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084370#M62881</guid>
      <dc:creator>Thiago_G_</dc:creator>
      <dc:date>2015-11-25T19:08:07Z</dc:date>
    </item>
    <item>
      <title>Try the barcode scanner</title>
      <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084371#M62882</link>
      <description>&lt;P&gt;Try the barcode scanner sample in the "Start a New Project"?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2015 00:30:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084371#M62882</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-11-26T00:30:57Z</dc:date>
    </item>
    <item>
      <title>Hello.</title>
      <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084372#M62883</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;

&lt;P&gt;No i didn`t and i am ashamed for that.&lt;/P&gt;

&lt;P&gt;I will try this one now.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2015 12:41:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084372#M62883</guid>
      <dc:creator>Thiago_G_</dc:creator>
      <dc:date>2015-11-27T12:41:02Z</dc:date>
    </item>
    <item>
      <title>If it doesn't work, try and</title>
      <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084373#M62884</link>
      <description>&lt;P&gt;If it doesn't work, try and add com.phonegap.plugins.barcodescanner via the third party plugins.&lt;/P&gt;

&lt;P&gt;It has been tested on CLI 4.1.2&lt;/P&gt;</description>
      <pubDate>Sat, 28 Nov 2015 15:51:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084373#M62884</guid>
      <dc:creator>Michael_O_2</dc:creator>
      <dc:date>2015-11-28T15:51:26Z</dc:date>
    </item>
    <item>
      <title>Thiago -- I tried the sample</title>
      <link>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084374#M62885</link>
      <description>&lt;P&gt;Thiago -- I tried the sample app, using the Debug tab, both with CLI 4.1.2 and CLI 5.1.1 and the sample app worked just fine.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:49:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/barcode-Scanner-just-work-on-IDE/m-p/1084374#M62885</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-11-30T19:49:14Z</dc:date>
    </item>
  </channel>
</rss>

