<?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 Chris, you can clone the geo in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023506#M39201</link>
    <description>&lt;P&gt;Chris, you can clone the geo plugin and modify it or create a "dummy plugin" that consists of only a plugin.xml file to add those features into the AndroidManifest.xml file. See the "config-file" element about halfway down this doc page: &lt;A href="https://cordova.apache.org/docs/en/5.1.1/plugin_ref/spec.html" target="_blank"&gt;https://cordova.apache.org/docs/en/5.1.1/plugin_ref/spec.html&lt;/A&gt;. I haven't verified this, but a plugin.xml file that contains something like this (borrowed from the &lt;A href="https://github.com/apache/cordova-plugin-geolocation/blob/master/plugin.xml"&gt;existing geo plugin.xml file&lt;/A&gt;):&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"
    xmlns:rim="http://www.blackberry.com/ns/widgets"
    xmlns:android="http://schemas.android.com/apk/res/android"
    id="cordova-plugin-geolocation-manifest-addon"
    version="0.0.1"
&amp;gt;

    &amp;lt;name&amp;gt;Geolocation Manifest Addon&amp;lt;/name&amp;gt;
    &amp;lt;description&amp;gt;Cordova Geolocation Manifest Addon Plugin&amp;lt;/description&amp;gt;
    &amp;lt;license&amp;gt;MIT&amp;lt;/license&amp;gt;

    &amp;lt;!-- android --&amp;gt;
    &amp;lt;platform name="android"&amp;gt;
        &amp;lt;config-file target="AndroidManifest.xml" parent="/*"&amp;gt;
            &amp;lt;uses-feature android:name="android.hardware.location" android:required="false" /&amp;gt;
            &amp;lt;uses-feature android:name="android.hardware.location.gps" 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;Then, use the add local plugin with the plugin manager to copy this "plugin" to your project.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Oct 2015 00:57:19 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2015-10-22T00:57:19Z</dc:date>
    <item>
      <title>uses-feature needed for Amazon APK</title>
      <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023503#M39198</link>
      <description>&lt;P&gt;My Android APK has been OK unchanged to date at the Amazon AppStore. However they now need more detailed settings in the manifest:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://developer.amazon.com/public/support/submitting-your-app/tech-docs/targeting-amazon-devices-with-your-android-manifest" target="_blank"&gt;https://developer.amazon.com/public/support/submitting-your-app/tech-docs/targeting-amazon-devices-with-your-android-manifest&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The geolocation plugin adds&lt;BR /&gt;
	&amp;lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&amp;gt;&lt;BR /&gt;
	&amp;lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&amp;gt;&lt;/P&gt;

&lt;P&gt;The Amazon doc says the manifest needs these feature specs in the manifest if the GPS is optional:&lt;BR /&gt;
	&amp;lt;uses-feature android:name="android.hardware.location" android:required="false" /&amp;gt;&lt;BR /&gt;
	&amp;lt;uses-feature android:name="android.hardware.location.gps" android:required="false" /&amp;gt;&lt;/P&gt;

&lt;P&gt;Is there any way to add these?&lt;/P&gt;

&lt;P&gt;Thanks, Chris&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2015 14:05:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023503#M39198</guid>
      <dc:creator>Chris_C_8</dc:creator>
      <dc:date>2015-10-19T14:05:48Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023504#M39199</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;When you add&lt;A href="https://www.npmjs.com/package/cordova-plugin-geolocation"&gt; geolocation&lt;/A&gt; plugin in your project these default permissions are being added during that time.&lt;span class="lia-inline-image-display-wrapper" image-alt="geo.PNG"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8135i2F04CD1A7CB4C1E1/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="geo.PNG" alt="geo.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 18:46:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023504#M39199</guid>
      <dc:creator>Amrita_C_Intel</dc:creator>
      <dc:date>2015-10-20T18:46:23Z</dc:date>
    </item>
    <item>
      <title>Thanks - I know that - but it</title>
      <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023505#M39200</link>
      <description>&lt;P&gt;Thanks - I know that - but it's the extra uses-feature manifest entries that are needed.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 19:15:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023505#M39200</guid>
      <dc:creator>Chris_C_8</dc:creator>
      <dc:date>2015-10-20T19:15:56Z</dc:date>
    </item>
    <item>
      <title>Chris, you can clone the geo</title>
      <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023506#M39201</link>
      <description>&lt;P&gt;Chris, you can clone the geo plugin and modify it or create a "dummy plugin" that consists of only a plugin.xml file to add those features into the AndroidManifest.xml file. See the "config-file" element about halfway down this doc page: &lt;A href="https://cordova.apache.org/docs/en/5.1.1/plugin_ref/spec.html" target="_blank"&gt;https://cordova.apache.org/docs/en/5.1.1/plugin_ref/spec.html&lt;/A&gt;. I haven't verified this, but a plugin.xml file that contains something like this (borrowed from the &lt;A href="https://github.com/apache/cordova-plugin-geolocation/blob/master/plugin.xml"&gt;existing geo plugin.xml file&lt;/A&gt;):&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"
    xmlns:rim="http://www.blackberry.com/ns/widgets"
    xmlns:android="http://schemas.android.com/apk/res/android"
    id="cordova-plugin-geolocation-manifest-addon"
    version="0.0.1"
&amp;gt;

    &amp;lt;name&amp;gt;Geolocation Manifest Addon&amp;lt;/name&amp;gt;
    &amp;lt;description&amp;gt;Cordova Geolocation Manifest Addon Plugin&amp;lt;/description&amp;gt;
    &amp;lt;license&amp;gt;MIT&amp;lt;/license&amp;gt;

    &amp;lt;!-- android --&amp;gt;
    &amp;lt;platform name="android"&amp;gt;
        &amp;lt;config-file target="AndroidManifest.xml" parent="/*"&amp;gt;
            &amp;lt;uses-feature android:name="android.hardware.location" android:required="false" /&amp;gt;
            &amp;lt;uses-feature android:name="android.hardware.location.gps" 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;Then, use the add local plugin with the plugin manager to copy this "plugin" to your project.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2015 00:57:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023506#M39201</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-10-22T00:57:19Z</dc:date>
    </item>
    <item>
      <title>Thanks Paul - I'll give that</title>
      <link>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023507#M39202</link>
      <description>&lt;P&gt;Thanks Paul - I'll give that a go&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2015 09:06:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/uses-feature-needed-for-Amazon-APK/m-p/1023507#M39202</guid>
      <dc:creator>Chris_C_8</dc:creator>
      <dc:date>2015-10-22T09:06:22Z</dc:date>
    </item>
  </channel>
</rss>

