<?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 I giveup my native now only in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100381#M68436</link>
    <description>&lt;P&gt;I giveup my native now only English and second Russian.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Basically tried create www folder, rebuild in xdk , same error in application loader, exactly same error.&lt;/P&gt;

&lt;P&gt;Samely created the&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;intelxdk.config.additions.xml above, rebuild, again Nothing changed in error... in application loader...&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Error is the atrached as in initial/started post #1 - in this thread sequence... in this page in other words...&lt;/P&gt;

&lt;P&gt;Am I clear...&lt;/P&gt;</description>
    <pubDate>Thu, 10 Dec 2015 09:39:07 GMT</pubDate>
    <dc:creator>Leonidas_S_</dc:creator>
    <dc:date>2015-12-10T09:39:07Z</dc:date>
    <item>
      <title>Submitting an app iOS with Application Loader got error missing icons...</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100361#M68416</link>
      <description>&lt;P&gt;Submitting an app iOS with Application Loader got error missing icons... &lt;STRONG&gt;see attached shot ...&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;what to do? first time tried do submit... i put all iOS icons in xdk app settings... well&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 19:35:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100361#M68416</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-07T19:35:57Z</dc:date>
    </item>
    <item>
      <title>Did you use PNG images? JPG</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100362#M68417</link>
      <description>&lt;P&gt;Did you use PNG images? JPG images will not work. Did you build with CLI 4.1.2 or CLI 5.1.1?&lt;/P&gt;

&lt;P&gt;Alternatively, you can add the icons using the intelxdk.config.additions.xml file. See &lt;A href="https://software.intel.com/en-us/xdk/faqs/general#search-spotlight-icons"&gt;this FAQ entry&lt;/A&gt; and this example set of iOS icons (below). In this example set, the pkg directory is inside your www directory:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!-- iOS icons and splash screens --&amp;gt;
&amp;lt;platform name="ios"&amp;gt;
    &amp;lt;!-- iPhone and iPod Touch App Icons --&amp;gt;
    &amp;lt;icon src="pkg/ios/icon.png" width="57" height="57" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-60.png" width="60" height="60" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon@2x.png" width="114" height="114" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-60@2x.png" width="120" height="120" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-60@3x.png" width="180" height="180" /&amp;gt;
    &amp;lt;!-- iPad, iPad Mini and iPad Pro App Icons --&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-72.png" width="72" height="72" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-76.png" width="76" height="76" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-72@2x.png" width="144" height="144" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-76@2x.png" width="152" height="152" /&amp;gt;
    &amp;lt;!-- Spotlight Icons --&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-40.png" width="40" height="40" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-60.png" width="60" height="60" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-40@2x.png" width="80" height="80" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-40@3x.png" width="120" height="120" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-60@3x.png" width="180" height="180" /&amp;gt;
    &amp;lt;!-- Settings Icons --&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-small.png" width="29" height="29" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-small@2x.png" width="58" height="58" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-small@3x.png" width="87" height="87" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-50.png" width="50" height="50" /&amp;gt;
    &amp;lt;icon src="pkg/ios/icon-50@2x.png" width="100" height="100" /&amp;gt;

    &amp;lt;!-- iPad Splash Screens --&amp;gt;
    &amp;lt;splash src="pkg/ios/default-portrait~ipad.png" width="768" height="1024"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-landscape~ipad.png" width="1024" height="768"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-portrait@2x~ipad.png" width="1536" height="2048"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-landscape@2x~ipad.png" width="2048" height="1536"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-portrait~ipad-pro.png" width="2048" height="2732"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-landscape~ipad-pro.png" width="2732" height="2048"/&amp;gt;
    &amp;lt;!-- iPhone 6 and 6 Plus Splash Screens --&amp;gt;
    &amp;lt;splash src="pkg/ios/default-667h.png" width="750" height="1334"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-736h.png" width="1242" height="2208"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-landscape-736h.png" width="2208" height="1242"/&amp;gt;
    &amp;lt;!-- iPhone 5, iPhone 4s, iPhone Retina and iPhone Splash Screens --&amp;gt;
    &amp;lt;splash src="pkg/ios/default~iphone.png" width="320" height="480"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default@2x~iphone.png" width="640" height="960"/&amp;gt;
    &amp;lt;splash src="pkg/ios/default-568h@2x~iphone.png" width="640" height="1136"/&amp;gt;
&amp;lt;/platform&amp;gt;

&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 00:14:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100362#M68417</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-08T00:14:11Z</dc:date>
    </item>
    <item>
      <title>used</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100363#M68418</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;used&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;CLI 4.1.2&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;png used&lt;/P&gt;

&lt;P&gt;res/ios/...&lt;/P&gt;

&lt;P&gt;the xml file above is in www/ &amp;nbsp; ...?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 16:53:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100363#M68418</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T16:53:00Z</dc:date>
    </item>
    <item>
      <title>resolution i think is 72ppi -</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100364#M68419</link>
      <description>&lt;P&gt;resolution i think is 72ppi - i did images in 1080p monitor...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 17:02:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100364#M68419</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T17:02:17Z</dc:date>
    </item>
    <item>
      <title>BTW IS OLD PROJECT XDK</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100365#M68420</link>
      <description>&lt;P&gt;BTW IS OLD PROJECT XDK &lt;STRONG&gt;With&lt;EM&gt;out&lt;/EM&gt;&amp;nbsp; &amp;nbsp;/www/ folder&lt;/STRONG&gt; what to do???&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 17:04:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100365#M68420</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T17:04:24Z</dc:date>
    </item>
    <item>
      <title>Since it is an "old" project,</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100366#M68421</link>
      <description>&lt;P&gt;Since it is an "old" project, your "www" directory is equal to your project root directory. There is an FAQ that explains how to fix that &amp;gt; &lt;A href="https://software.intel.com/en-us/xdk/faqs/general#www-folder" target="_blank"&gt;https://software.intel.com/en-us/xdk/faqs/general#www-folder&lt;/A&gt;, I recommend you do this on a copy of your project, not on the original, so you can "go back" in case something goes wrong.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 18:12:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100366#M68421</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-08T18:12:42Z</dc:date>
    </item>
    <item>
      <title>I get this error in emulator</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100367#M68422</link>
      <description>&lt;P&gt;I get this error in emulator - see attachment &amp;nbsp;--- after created www folder....&lt;/P&gt;

&lt;P&gt;but not have file plugin in plugins list.folder outside www/ .. well? neither need this the app&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 18:54:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100367#M68422</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T18:54:00Z</dc:date>
    </item>
    <item>
      <title>You need to move the plugins</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100368#M68423</link>
      <description>&lt;P&gt;You need to move the plugins directory into the root of the new project. Did you follow all the instructions in the FAQ?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 19:25:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100368#M68423</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-08T19:25:44Z</dc:date>
    </item>
    <item>
      <title>Are you sure? To a new</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100369#M68424</link>
      <description>&lt;P&gt;Are you sure? To a new Project is outside the Plugins folder...&lt;/P&gt;

&lt;P&gt;Or because is a conversion to "www" folder , have to be inside www folder?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;well where the Plugins folder,... in or out the www folder?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 20:49:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100369#M68424</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T20:49:08Z</dc:date>
    </item>
    <item>
      <title>Create a new project based on</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100370#M68425</link>
      <description>&lt;P&gt;Create a new project based on the "hello-cordova" sample and you'll see how the project directory should be structured.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:17:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100370#M68425</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-08T21:17:15Z</dc:date>
    </item>
    <item>
      <title>I did and plugins/ is outside</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100371#M68426</link>
      <description>&lt;P&gt;I did and plugins/ is outside... well ?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;btw this File Plugin added but deleted may a setting do this...&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;inside www or outside www,...&lt;/STRONG&gt; &amp;nbsp;the PLUGINS FOLDER...?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:33:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100371#M68426</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T21:33:00Z</dc:date>
    </item>
    <item>
      <title>plugins belong outside the</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100372#M68427</link>
      <description>&lt;P&gt;plugins belong outside the www directory. Please create a demo project based on the hello cordova app to see how that app is organized:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screen Shot 2015-12-08 at 1.38.29 PM.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8294i653432B794024253/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screen Shot 2015-12-08 at 1.38.29 PM.png" alt="Screen Shot 2015-12-08 at 1.38.29 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screen Shot 2015-12-08 at 1.38.46 PM.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8295iD990C18F6316089C/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screen Shot 2015-12-08 at 1.38.46 PM.png" alt="Screen Shot 2015-12-08 at 1.38.46 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screen Shot 2015-12-08 at 1.39.17 PM.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8296i2036BF39303645F5/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screen Shot 2015-12-08 at 1.39.17 PM.png" alt="Screen Shot 2015-12-08 at 1.39.17 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:45:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100372#M68427</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-08T21:45:23Z</dc:date>
    </item>
    <item>
      <title>ok is outside the www folder</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100373#M68428</link>
      <description>&lt;P&gt;ok is outside the www folder&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;why&lt;/STRONG&gt; you say put plugins/ folder &lt;STRONG&gt;inside &lt;/STRONG&gt;the www??????????????????&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:48:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100373#M68428</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T21:48:44Z</dc:date>
    </item>
    <item>
      <title>so how delete File Plugin</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100374#M68429</link>
      <description>&lt;P&gt;so how delete File Plugin alert getting in emulator???????????&lt;/P&gt;

&lt;P&gt;Plugin added but deleted - not getting alert... posted in #7&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:50:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100374#M68429</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-08T21:50:46Z</dc:date>
    </item>
    <item>
      <title>I said to put "the pkg</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100375#M68430</link>
      <description>&lt;P&gt;I said to put "the &lt;STRONG&gt;pkg directory&lt;/STRONG&gt; is &lt;STRONG&gt;inside&lt;/STRONG&gt; your &lt;STRONG&gt;www&lt;/STRONG&gt; directory" -- not the &lt;STRONG&gt;plugins directory&lt;/STRONG&gt;. In my example (&lt;A href="https://software.intel.com/en-us/forums/intel-xdk/topic/603204#comment-1851643"&gt;in #2&lt;/A&gt;), the &lt;STRONG&gt;pkg directory&lt;/STRONG&gt; &lt;STRONG&gt;contains&lt;/STRONG&gt; &lt;STRONG&gt;icons&lt;/STRONG&gt; and &lt;STRONG&gt;splash screens&lt;/STRONG&gt;!!!!!!!!!!&lt;/P&gt;

&lt;P&gt;I don't understand what you mean by "&lt;EM&gt;Plugin added but deleted&lt;/EM&gt;" ???? Please clarify.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 00:29:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100375#M68430</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-09T00:29:29Z</dc:date>
    </item>
    <item>
      <title>I mean in xdk I added File</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100376#M68431</link>
      <description>&lt;P&gt;I mean in xdk I added File Plugin via project plugins add , before long ago in the old version... but saw that this plugin was NOT so I delete it... i do not remember how deleted it... Now I am getting File Plugin alert in emulator of xdk...? See #7&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 06:49:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100376#M68431</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-09T06:49:58Z</dc:date>
    </item>
    <item>
      <title>well, is it a setting that</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100377#M68432</link>
      <description>&lt;P&gt;well, is it a setting that referring File Plugin...? so remove this code lines...&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 16:22:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100377#M68432</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-09T16:22:43Z</dc:date>
    </item>
    <item>
      <title>same error getting with PNG</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100378#M68433</link>
      <description>&lt;P&gt;same error getting with PNG icons in Application Loader&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;intelxdk.config.additions.xml &amp;nbsp;try use this???&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;well?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 17:56:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100378#M68433</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-09T17:56:00Z</dc:date>
    </item>
    <item>
      <title>same EXACTLY error getting as</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100379#M68434</link>
      <description>&lt;P&gt;same EXACTLY error getting as in&amp;nbsp;&lt;SPAN style="color: rgb(96, 96, 96); font-size: 13.008px; line-height: 19.512px; background-color: rgb(238, 238, 238);"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.intel.com/legacyfs/online/drupal_files/managed/24/ab/2015-12-07%2021-13-20%20error%20xdk%20app%20loader.jpg"&gt;2015-12-07 21-13-20 error xdk app loader.jpg&lt;/A&gt;&amp;nbsp; thread #1&lt;/P&gt;

&lt;P&gt;I INSERTED THIS &amp;gt;&amp;gt;&amp;gt; IN&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;intelxdk.config.additions.xml THAT I ADDED - NEEDED REFER IT ANYWHERE OR IS FOUND AUTO????&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!-- Change the debuggable preference to true to build a remote CDT debuggable app for --&amp;gt;
&amp;lt;!-- Crosswalk apps on Android 4.0+ devices and Cordova apps on Android 4.4+ devices. --&amp;gt;
&amp;lt;preference name="debuggable" value="false" /&amp;gt;
&amp;lt;!-- IMPORTANT: set the debuggable preference to false before you build for the store! --&amp;gt;

&amp;lt;!-- 'value' = number of milliseconds to display the splash screen in a Cordova build. --&amp;gt;
&amp;lt;!-- This preference only affects Cordova builds for Crosswalk and Android. --&amp;gt;
&amp;lt;!-- &amp;lt;preference name="SplashScreenDelay" value="2000" /&amp;gt; --&amp;gt;

&amp;lt;platform name="ios"&amp;gt;
    

    &amp;lt;!-- iPad, iPad Mini and iPad Pro App Icons --&amp;gt;

    &amp;lt;icon src="res/icon/android/icon-72-hdpi.png" width="72" height="72" /&amp;gt;

    &amp;lt;icon src="res/ios/76x76.png" width="76" height="76" /&amp;gt;

    &amp;lt;icon src="res/ios/144x144.png" width="144" height="144" /&amp;gt;

    &amp;lt;icon src="res/ios/152x152.png" width="152" height="152" /&amp;gt;

    
    
    &amp;lt;!-- below requires the splash screen plugin --&amp;gt;
    &amp;lt;!-- docs: &lt;A href="https://github.com/apache/cordova-plugin-splashscreen" target="_blank"&gt;https://github.com/apache/cordova-plugin-splashscreen&lt;/A&gt; --&amp;gt;
    &amp;lt;preference name="AutoHideSplashScreen" value="true" /&amp;gt;
    &amp;lt;preference name="FadeSplashScreen" value="false"/&amp;gt;
    &amp;lt;preference name="FadeSplashScreenDuration" value="2"/&amp;gt;
    &amp;lt;preference name="ShowSplashScreenSpinner" value="false"/&amp;gt;

    &amp;lt;!-- below requires the status bar plugin --&amp;gt;
    &amp;lt;!-- docs: &lt;A href="https://github.com/apache/cordova-plugin-statusbar" target="_blank"&gt;https://github.com/apache/cordova-plugin-statusbar&lt;/A&gt; --&amp;gt;
    &amp;lt;!-- see &lt;A href="http://devgirl.org/2014/07/31/phonegap-developers-guid" target="_blank"&gt;http://devgirl.org/2014/07/31/phonegap-developers-guid&lt;/A&gt; --&amp;gt;
    &amp;lt;preference name="StatusBarOverlaysWebView" value="false" /&amp;gt;
    &amp;lt;preference name="StatusBarBackgroundColor" value="#000000" /&amp;gt;
    &amp;lt;preference name="StatusBarStyle" value="lightcontent" /&amp;gt;
&amp;lt;/platform&amp;gt;

&amp;lt;platform name="android"&amp;gt;
    &amp;lt;!-- below requires the splash screen plugin --&amp;gt;
    &amp;lt;!-- docs: &lt;A href="https://github.com/apache/cordova-plugin-splashscreen" target="_blank"&gt;https://github.com/apache/cordova-plugin-splashscreen&lt;/A&gt; --&amp;gt;
    &amp;lt;preference name="SplashMaintainAspectRatio" value="false" /&amp;gt;
&amp;lt;/platform&amp;gt;

&amp;lt;!-- use this feature to add command-lines to be used by Crosswalk builds on device --&amp;gt;
&amp;lt;!-- see &lt;A href="http://peter.sh/experiments/chromium-command-line-switches/" target="_blank"&gt;http://peter.sh/experiments/chromium-command-line-switches/&lt;/A&gt; for complete list --&amp;gt;
&amp;lt;intelxdk:crosswalk xwalk-command-line="--disable-pull-to-refresh-effect" /&amp;gt;
&amp;lt;!-- ignore gpu blacklist for larger collection of gpu accelerated devices --&amp;gt;
&amp;lt;intelxdk:crosswalk xwalk-command-line="--ignore-gpu-blacklist" /&amp;gt;
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 18:29:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100379#M68434</guid>
      <dc:creator>Leonidas_S_</dc:creator>
      <dc:date>2015-12-09T18:29:27Z</dc:date>
    </item>
    <item>
      <title>Leonidas, sorry, but I'm</title>
      <link>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100380#M68435</link>
      <description>&lt;P&gt;Leonidas, sorry, but I'm having trouble helping you and understanding your questions. It would work better if you posted detailed questions in your native language and let me translate those detailed questions. Your English is very hard to understand, it would be better if you posted detailed questions in your native language.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2015 00:45:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Submitting-an-app-iOS-with-Application-Loader-got-error-missing/m-p/1100380#M68435</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-12-10T00:45:47Z</dc:date>
    </item>
  </channel>
</rss>

