<?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 Hi - thanks Paul - I got the in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096456#M67067</link>
    <description>&lt;P&gt;Hi - thanks Paul - I got the plugin working as far as the build is concerned (i.e. the build works) but unfortunately it doesn't seem to have the desired effect on the actual manifest. &amp;nbsp;I'm not sure where else to put that line, it seems that's the only place for it!&lt;/P&gt;</description>
    <pubDate>Wed, 15 Feb 2017 23:35:18 GMT</pubDate>
    <dc:creator>Tim_A_2</dc:creator>
    <dc:date>2017-02-15T23:35:18Z</dc:date>
    <item>
      <title>Modify Android manifest?</title>
      <link>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096454#M67065</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi - I'm trying to build an app for the Amazon Fire TV box / stick (exclusively) and I'm running into a problem with the Amazon ingestion system, basically it's refusing to show options for publishing to the Fire TV because it is touch screen enabled. &amp;nbsp;They suggest adding the following line to the Android manifest:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="highlight" style="overflow-y: hidden; overflow-x: auto; background-color: rgb(240, 240, 240); max-width: 800px; padding: 15px; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; font-family: Monaco, monospace, Arial; font-size: 10px; color: rgb(51, 51, 51);"&gt;&lt;CODE style="font-family: Monaco, monospace, Arial; font-size: 10px;"&gt;&lt;SPAN class="nt" style="color: navy;"&gt;&amp;lt;uses-feature&lt;/SPAN&gt; &lt;SPAN class="na" style="color: teal;"&gt;android:name=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: rgb(221, 17, 68);"&gt;"android.hardware.touchscreen"&lt;/SPAN&gt; &lt;SPAN class="na" style="color: teal;"&gt;android:required=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: rgb(221, 17, 68);"&gt;"false"&lt;/SPAN&gt; &lt;SPAN class="nt" style="color: navy;"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However I can't work out how to do this. &amp;nbsp;It seems there's no easy way to do this in XDK and you have to create a dummy plugin - however I don't have a clue how to do this! &amp;nbsp;I tried creating a XML file using the example given on the FAQ page (https://software.intel.com/en-us/xdk/faqs/general), it seemed to add the plugin OK, but the build then failed. &amp;nbsp;Also I wouldn't know where to add the line above within that code anyway - even without the line the build failed, so I'm missing something.&lt;/P&gt;

&lt;P&gt;Is there any simple way of making this tiny change to the manifest?! &amp;nbsp;Thanks!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2017 16:54:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096454#M67065</guid>
      <dc:creator>Tim_A_2</dc:creator>
      <dc:date>2017-02-15T16:54:36Z</dc:date>
    </item>
    <item>
      <title>I have not tested this nor</title>
      <link>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096455#M67066</link>
      <description>&lt;P&gt;I have not tested this nor have I looked to see where in the Android Manifest file your statement belongs, so this may or may not work, but it should get you started:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;  
&amp;lt;plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="my-custom-plugin" version="1.0.0"&amp;gt; 

    &amp;lt;name&amp;gt;My Custom Plugin&amp;lt;/name&amp;gt; 
    &amp;lt;description&amp;gt;Add to the AndroidManifest.xml&amp;lt;/description&amp;gt; 
    &amp;lt;license&amp;gt;MIT&amp;lt;/license&amp;gt; 

    &amp;lt;engines&amp;gt; 
        &amp;lt;engine name="cordova" version="&amp;gt;=3.0.0" /&amp;gt; 
    &amp;lt;/engines&amp;gt;  

    &amp;lt;!-- android --&amp;gt; 
    &amp;lt;platform name="android"&amp;gt; 
        &amp;lt;config-file target="AndroidManifest.xml" parent="/manifest/application"&amp;gt; 
            &amp;lt;uses-feature android:name="android.hardware.touchscreen" android:required="false" /&amp;gt; 
        &amp;lt;/config-file&amp;gt; 
    &amp;lt;/platform&amp;gt;  
&amp;lt;/plugin&amp;gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2017 21:57:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096455#M67066</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2017-02-15T21:57:21Z</dc:date>
    </item>
    <item>
      <title>Hi - thanks Paul - I got the</title>
      <link>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096456#M67067</link>
      <description>&lt;P&gt;Hi - thanks Paul - I got the plugin working as far as the build is concerned (i.e. the build works) but unfortunately it doesn't seem to have the desired effect on the actual manifest. &amp;nbsp;I'm not sure where else to put that line, it seems that's the only place for it!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2017 23:35:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Modify-Android-manifest/m-p/1096456#M67067</guid>
      <dc:creator>Tim_A_2</dc:creator>
      <dc:date>2017-02-15T23:35:18Z</dc:date>
    </item>
  </channel>
</rss>

