Why is my app not compatible with some devices on Google play?

2

I posted an app on google play, but unfortunately it is not available for some of my devices. I'm very confused because in the development with Eclipse, I used the same devices for testing and they work perfectly. Are there any missing settings to be compatible with Google play?

My Manifest:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mgoficina"
android:versionCode="1"
android:versionName="1.0.1" >

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

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL" />
<uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" />

<uses-feature
    android:name="android.hardware.camera"
    android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name="com.mgoficina.SplashActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.mgoficina.NovaActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.MainActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.FormBuscaActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.SearchActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.SingleActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.SingleActivityEdit"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.ListaTrabalhosActivity"
        android:label="@string/title_activity_lista_trabalhos"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.NovaOsActivity"
        android:label="@string/title_activity_nova_os"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.FechaLoteActivity"
        android:label="@string/title_activity_fechar_lote"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.DefinicoesActivity"
        android:label="@string/definicoes"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>

    <service android:name="com.mgoficina.ExportaService" >
        <intent-filter>
            <action android:name="MGO_INICIAR_EXPORTACAO" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </service>
    <service android:name="com.mgoficina.FechaLoteService" >
        <intent-filter>
            <action android:name="MGO_FECHAR_LOTE" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </service>
    <service android:name="com.mgoficina.BackupService" >
        <intent-filter>
            <action android:name="MGO_RESPOSTA" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </service>

    <activity
        android:name="com.mgoficina.UserActivity"
        android:label="@string/dados_usuario"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.RecuperaDadosActivity"
        android:label="@string/title_activity_recupera_dados"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.PerfilActivity"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>

    <service android:name="com.mgoficina.DeletaService" >
        <intent-filter>
            <action android:name="MGO_DELETA" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </service>

    <activity
        android:name="com.mgoficina.BemVindoActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light.NoActionBar" >
    </activity>
    <activity
        android:name="com.mgoficina.SobreActivity"
        android:label="@string/sobre"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light.NoActionBar" >
    </activity>
    <activity
        android:name="com.mgoficina.ClientesActivity"
        android:label="@string/title_activity_clientes"
        android:screenOrientation="portrait"
        android:theme="@style/Theme.Sherlock.Light" >
    </activity>
    <activity
        android:name="com.mgoficina.CameraActivity"
        android:label="@string/title_activity_camera" >
    </activity>
    <activity
        android:name="com.mgoficina.ServidorActivity"
        android:label="@string/title_activity_servidor" >
    </activity>

</application>

    
asked by anonymous 24.12.2014 / 02:04

1 answer

3

You are using this camera feature as not required:

<uses-feature android:name="android.hardware.camera" android:required="false" />

However, camera focus was not defined as false , GooglePlay is probably assumed to be true , in this line:

<uses-feature android:name="android.hardware.camera.autofocus" />

Both are likely to have android:required="false" :

<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
    
25.12.2014 / 00:41