Device incompatible with Play Store app

Asked

Viewed 336 times

0

Some devices, especially a tablet is unable to download an app from the play store. Can anyone tell you what might be blocking?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sponte.PortalDeNotas"
    android:versionCode="100"
    android:versionName="1.0.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.VIBRATE"/>
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/icone"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name="com.sponte.PortalDeNotas.Home"
            android:label="@string/app_name"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity 
            android:name="com.sponte.PortalDeNotas.PortalAluno"
            android:icon="@drawable/ic_launcher" 
            android:theme="@android:style/Theme.Black.NoTitleBar"
            android:screenOrientation="portrait"/>
        <activity android:name="com.sponte.PortalDeNotas.sem_conexao" android:label="@string/app_name"></activity>
        <service android:label="BackgroundService" android:name="com.sponte.PortalDeNotas.BackgroundService"></service>
        <receiver android:name="com.sponte.PortalDeNotas.onBoot">
             <intent-filter>  
            <action android:name="android.intent.action.BOOT_COMPLETED" />  
            <category android:name="android.intent.category.HOME" />  
        </intent-filter>  
        </receiver>  
    </application>

</manifest>
  • 1

    Having a problem with Android Studio? Take a look at this: http://answall.com/a/101703/101

1 answer

1

You used:

<uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />

The android:minSdkVersion=14 makes require Android 4.0, if the smartphone or tablet does not use a lower android then can not install the App.

I believe these two don’t interfere:

<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.VIBRATE"/>

For it is only a request for permission and not a <uses-feature ..>

Related question: Some devices can’t find my app in the playstore

  • Guilherme, thanks for your reply. However the tablet in question is with Android 4.4. It seems to be something with the same device. Strange.

  • @Brunoviganó there is a need to use <uses-permission android:name="android.permission.BLUETOOTH"/> and <uses-permission android:name="android.permission.VIBRATE"/>? If you don’t have try taking, also try taking the android:allowBackup="true".

Browser other questions tagged

You are not signed in. Login or sign up in order to post.