Skip to content Skip to sidebar Skip to footer

Google Play Says Your Device Isnt Compatible With This Application

I tried all solutions for my problem. here is my manifest code

Solution 1:

You are adding an (optionnal) list of compatible screens.

Actually, the LG G2 has these properties : 1920 x 1080p so 432 ppp which is a really definition.

In the official documentation (link to official doc), you can read this :

Note: This attribute currently does not accept xxhdpi as a valid value, but you can instead specify 480 as the value, which is the approximate threshold for xhdpi screens.

So you could add something like this (adjust it if needed) for LG G2 :

<screen
    android:screenDensity="480"
    android:screenSize="xlarge" />

For the future, be sure that you NEED to limit to certain screen sizes. You are making some limits to your app here : be sure to not forget one screen size.

Sources & links

compatible-screens documentation

Range of screens supported


Solution 2:

It looks like you are trying to support all screen sizes?

If that's the case just remove the compatible screens tag and support screens tags altogether. You would only use this if you want to filter certain screens!

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


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

 <uses-permission android:name="android.permission.INTERNET" />
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.screen.portrait" />

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

    <activity
        android:name="com.turk.bakistik.MainActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.turk.bakistik.anaekran"
        android:screenOrientation="portrait"
         />
    <activity
        android:name="com.turk.bakistik.Kayitol"
        android:label="@string/title_activity_kayitol"
        android:windowSoftInputMode="adjustResize"
        android:screenOrientation="portrait" >
    </activity>     
</application>
</manifest>

Post a Comment for "Google Play Says Your Device Isnt Compatible With This Application"