Android app can't be put on Amazon store?

I am trying to host my application on the amazon store, but I am getting the following error:

* YOUR_APP does not install on Kindle Fire. Please see the Kindle Fire FAQ for a list of compatible permissions specified in your Android manifest file, as this may cause problems installing your applications on the Kindle Fire. If your application currently has a permission that is not critical to the functionality or user experience of the application, we recommend that you remove it from the manifest file. *

And here is my manifest file:

<?xml version="1.0" encoding="utf-8"?> 

 <uses-sdk android:minSdkVersion="11" android:targetSdkVersion="13"/> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > <activity android:name=".MainScreenActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MainActivity"> </activity> <activity android:name=".SubjectsActivity"> </activity> <activity android:name=".secondActivity"> </activity> <activity android:name=".thirdActivity"> </activity> <activity android:name=".Select"> </activity> </application> 

Any help is appreciated and appreciated. Thanks!

+4
source share
1 answer

Kindle Fire uses version 10 SDK ( "Kindle Fire Questions" ). You are probably getting an error since you require a minimum version of 11.

+4
source

Source: https://habr.com/ru/post/1398761/


All Articles