<?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 App Preview in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055970#M51914</link>
    <description>&lt;P&gt;I do not understand what happens with App Preview, the issue is that do not show the same result as Emulator, when I invoke a command like intel.xdk... do not work and the app is stopped this happens with IOS App Preview and Android App Preview but in Emulator everything works fine... here is the code.&lt;/P&gt;

&lt;P&gt;HTML&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="css/app.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://code.jquery.com/jquery-1.11.1.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script src="intelxdk.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="xhr.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/app.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;

&lt;P&gt;Jscript&lt;/P&gt;

&lt;P&gt;var rest_url = 'http://www.biipitdev.com/';&lt;BR /&gt;
	var device_id = null;&amp;nbsp;&lt;BR /&gt;
	var iPhoneFlag = false;&lt;/P&gt;

&lt;P&gt;var windowHeight;&lt;BR /&gt;
	var init = function () {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; windowHeight=window.innerHeight;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if( navigator.userAgent.match(/iPhone|iPod/) ){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iPhoneFlag = true;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	};&lt;/P&gt;

&lt;P&gt;window.addEventListener("load", init, false); &amp;nbsp;&lt;/P&gt;

&lt;P&gt;/**&lt;BR /&gt;
	&amp;nbsp;* Prevent Default Scrolling&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;*/&lt;BR /&gt;
	var preventDefaultScroll = function(event)&amp;nbsp;&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; // Prevent scrolling on this element&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; event.preventDefault();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; window.scroll(0,0);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; return false;&lt;BR /&gt;
	};&lt;/P&gt;

&lt;P&gt;$( document ).bind( 'mobileinit', function(){&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.text = "loading";&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.textVisible = false;&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.theme = "a";&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.html = "";&lt;BR /&gt;
	});&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	window.document.addEventListener("touchmove", preventDefaultScroll, false);&lt;/P&gt;

&lt;P&gt;var onDeviceReady = function() {&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //alert('device ready');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; //get a unique device_id&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; device_id = device.uuid; &amp;nbsp;intel.xdk.notification.alert(device_id);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //hide splash screen&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if( window.Cordova &amp;amp;&amp;amp; navigator.splashscreen ) { &amp;nbsp; &amp;nbsp; // Cordova API detected&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel.xdk.device.hideSplashScreen();&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //set orientation&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.setRotateOrientation("portrait");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.setAutoRotate(true);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //manage power&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.managePower(true,false);&lt;/P&gt;

&lt;P&gt;};&lt;BR /&gt;
	//onDeviceReady();&lt;BR /&gt;
	document.addEventListener("deviceready", onDeviceReady, false) ;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Mar 2015 15:24:34 GMT</pubDate>
    <dc:creator>Alex3</dc:creator>
    <dc:date>2015-03-18T15:24:34Z</dc:date>
    <item>
      <title>App Preview</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055970#M51914</link>
      <description>&lt;P&gt;I do not understand what happens with App Preview, the issue is that do not show the same result as Emulator, when I invoke a command like intel.xdk... do not work and the app is stopped this happens with IOS App Preview and Android App Preview but in Emulator everything works fine... here is the code.&lt;/P&gt;

&lt;P&gt;HTML&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="css/app.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css" /&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://code.jquery.com/jquery-1.11.1.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script src="intelxdk.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="xhr.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script src="js/app.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;

&lt;P&gt;Jscript&lt;/P&gt;

&lt;P&gt;var rest_url = 'http://www.biipitdev.com/';&lt;BR /&gt;
	var device_id = null;&amp;nbsp;&lt;BR /&gt;
	var iPhoneFlag = false;&lt;/P&gt;

&lt;P&gt;var windowHeight;&lt;BR /&gt;
	var init = function () {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; windowHeight=window.innerHeight;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if( navigator.userAgent.match(/iPhone|iPod/) ){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iPhoneFlag = true;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	};&lt;/P&gt;

&lt;P&gt;window.addEventListener("load", init, false); &amp;nbsp;&lt;/P&gt;

&lt;P&gt;/**&lt;BR /&gt;
	&amp;nbsp;* Prevent Default Scrolling&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;*/&lt;BR /&gt;
	var preventDefaultScroll = function(event)&amp;nbsp;&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; // Prevent scrolling on this element&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; event.preventDefault();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; window.scroll(0,0);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; return false;&lt;BR /&gt;
	};&lt;/P&gt;

&lt;P&gt;$( document ).bind( 'mobileinit', function(){&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.text = "loading";&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.textVisible = false;&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.theme = "a";&lt;BR /&gt;
	&amp;nbsp; $.mobile.loader.prototype.options.html = "";&lt;BR /&gt;
	});&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	window.document.addEventListener("touchmove", preventDefaultScroll, false);&lt;/P&gt;

&lt;P&gt;var onDeviceReady = function() {&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //alert('device ready');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; //get a unique device_id&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; device_id = device.uuid; &amp;nbsp;intel.xdk.notification.alert(device_id);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //hide splash screen&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if( window.Cordova &amp;amp;&amp;amp; navigator.splashscreen ) { &amp;nbsp; &amp;nbsp; // Cordova API detected&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel.xdk.device.hideSplashScreen();&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //set orientation&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.setRotateOrientation("portrait");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.setAutoRotate(true);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //manage power&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.managePower(true,false);&lt;/P&gt;

&lt;P&gt;};&lt;BR /&gt;
	//onDeviceReady();&lt;BR /&gt;
	document.addEventListener("deviceready", onDeviceReady, false) ;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:24:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055970#M51914</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T15:24:34Z</dc:date>
    </item>
    <item>
      <title>By "do no work" do you mean</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055971#M51915</link>
      <description>&lt;P&gt;By "do no work" do you mean you get an error? What error?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;You could wait for the "&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;intel.xdk.device.ready&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;" event, which at least for me, always fires after Cordova's deviceReady.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:49:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055971#M51915</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T15:49:03Z</dc:date>
    </item>
    <item>
      <title>Look now I have another issue</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055972#M51916</link>
      <description>&lt;P&gt;Look now I have another issue...&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I changed the order of the scripts call in index.html and now works, but the problem now is when I invoke the camera comes a black screen with a cancel button at bottom only.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:52:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055972#M51916</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T15:52:48Z</dc:date>
    </item>
    <item>
      <title>You really need to work on</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055973#M51917</link>
      <description>&lt;P&gt;You really need to work on providing more useful information to people if you want help. Are you getting a black screen on a device or in the emulator? What device? How are you invoking the camera, etc, etc, etc, etc, etc, etc&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:58:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055973#M51917</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T15:58:00Z</dc:date>
    </item>
    <item>
      <title>I am getting a black screen</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055974#M51918</link>
      <description>&lt;P&gt;I am getting a black screen in device (Iphone and Samsung), in emulator works fine.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:00:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055974#M51918</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T16:00:04Z</dc:date>
    </item>
    <item>
      <title>How are you invoking the</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055975#M51919</link>
      <description>&lt;P&gt;How are you invoking the camera?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:03:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055975#M51919</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T16:03:40Z</dc:date>
    </item>
    <item>
      <title>    document.addEventListener</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055976#M51920</link>
      <description>&lt;P&gt;&amp;nbsp; &amp;nbsp; document.addEventListener("intel.xdk.device.barcode.scan", barcodeScanned, false);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; intel.xdk.device.scanBarcode();&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:04:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055976#M51920</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T16:04:50Z</dc:date>
    </item>
    <item>
      <title>OK - wow, so your question</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055977#M51921</link>
      <description>&lt;P&gt;OK - wow, so your question was about the camera but the reader is supposed to guess the barcode scanner. I have to grab a sandwich, but I'll throw this in an app in about 30 minutes to see what happens.&lt;/P&gt;

&lt;P&gt;In the interim- It is worth noting that in this thread - found by searching "barcode" on this forum- &amp;nbsp;John H from Intel suggests checking if a third party plugin works. Note that since the app preview cannot use "non-standard" plugins you could only test this with a built app.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/topic/542638" target="_blank"&gt;https://software.intel.com/en-us/forums/topic/542638&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:10:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055977#M51921</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T16:10:42Z</dc:date>
    </item>
    <item>
      <title>But I develop a similar app</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055978#M51922</link>
      <description>&lt;P&gt;But I develop a similar app the last year and&amp;nbsp;&lt;SPAN class="s1"&gt;intel.xdk.device.barcode.scan works fine, the problem is after updated the app preview for IOS 8.x&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:12:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055978#M51922</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T16:12:34Z</dc:date>
    </item>
    <item>
      <title>Look</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055979#M51923</link>
      <description>&lt;P&gt;Look&lt;/P&gt;

&lt;P&gt;&lt;A href="http://prntscr.com/6icmvj" target="_blank"&gt;http://prntscr.com/6icmvj&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;In Emulator works but in App Preview I only gets a black screen.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:50:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055979#M51923</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T16:50:17Z</dc:date>
    </item>
    <item>
      <title>That information would also</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055980#M51924</link>
      <description>&lt;P&gt;That information would also have been useful.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;In any case, I used the sample app code from&amp;nbsp;https://software.intel.com/en-us/node/493036&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Works fine in Android App preview at least for on-device debugging using Crosswalk. I did not do USB cable for iOS since I avoid the mac as much as I can. But it does not work on App Preview via Wifi with iOS 8.2. I too get the black screen with cancel button.&lt;/P&gt;

&lt;P&gt;Not certain it is the source of the troubles, but my experience is that Apple often breaks stuff with their camera - was an issue with a native app I dealt with last year as well. You might be best finding a third party plugin whose author is willing to keep up with Apple's changes.Since September of last year, &amp;nbsp;Apple have released iOS 8.0, a week later 8.01, a day later 8.0.2, then of course we had 8.1, &amp;nbsp;8.1.1 ,8.1.2, 8.1.3 and now 8.2.&lt;/P&gt;

&lt;P&gt;Best of luck with it, in any case.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 17:03:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055980#M51924</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T17:03:03Z</dc:date>
    </item>
    <item>
      <title>Yes is the same example that</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055981#M51925</link>
      <description>&lt;P&gt;Yes is the same example that I took and make a modification for my App, but is weird because before works perfectly and now doesn't work, like you said the problem is with the version of IOS... let me research in Apple Forums about.&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 17:17:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055981#M51925</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T17:17:40Z</dc:date>
    </item>
    <item>
      <title>By the way I added a third</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055982#M51926</link>
      <description>&lt;P&gt;By the way I added a third party Cordova Barcode Scanner to my project and now I gets Can not read property barcodescanner.. at the end I am still stuck in the same point.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 17:19:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055982#M51926</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-18T17:19:13Z</dc:date>
    </item>
    <item>
      <title>Don't forget that the third</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055983#M51927</link>
      <description>&lt;P&gt;Don't forget that the third party plugin will only work in build apps - you can't test them using AppPreview. I recognize the challenge in supporting this, but in my opinion every minute of effort put into the AppDesigner &lt;SPAN style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;GUI builder&amp;nbsp;&lt;/SPAN&gt;would be better spent implementing a feature like that. Frankly, Intel could probably make a nice packet if they just added that as "premium" offering on the free XDK. I am not sure what i would pay for it, but I am pretty certain more than they would dare to charge for a personal developer license.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 17:37:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055983#M51927</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-18T17:37:21Z</dc:date>
    </item>
    <item>
      <title>We're working on an on-device</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055984#M51928</link>
      <description>&lt;P&gt;We're working on an on-device debug solution that would allow debugging with third-party apps. Company policy does not allow me to say when that feature will be available, but we are working hard on solving that problem and recognize it's value.&lt;/P&gt;

&lt;P&gt;@Barrett -- I'll forward your comment regarding App Designer to our project manager.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 00:30:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055984#M51928</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-03-19T00:30:39Z</dc:date>
    </item>
    <item>
      <title>Thanks Paul. I appreciate,</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055985#M51929</link>
      <description>&lt;P&gt;Thanks Paul. I appreciate, and probably not even fully, the complexity of implementing it, and also think that it's the sort of feature that anyone doing this commercially, even if as a sideline, would be willing to pay at least something for given the massive time savings it would offer. Your on-device debugging facilities are a real timesaver even within the 3rd party plugin restriction. The only things I am thinking about extra plug-ins for are a couple of bells &amp;amp; whistles so I am saving rolling those in until near the end.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 01:38:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview/m-p/1055985#M51929</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-19T01:38:05Z</dc:date>
    </item>
  </channel>
</rss>

