Monday 15 June 2015

android - Google Play Says Your Device isnt compatible with this application -



android - Google Play Says Your Device isnt compatible with this application -

i tried solutions problem. here manifest code

<?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" > <supports-screens android:anydensity="true" android:largescreens="true" android:normalscreens="true" android:resizeable="true" android:smallscreens="true" android:xlargescreens="true" /> <compatible-screens> <!-- normal size screens --> <screen android:screendensity="ldpi" android:screensize="normal" /> <screen android:screendensity="mdpi" android:screensize="normal" /> <screen android:screendensity="hdpi" android:screensize="normal" /> <screen android:screendensity="xhdpi" android:screensize="normal" /> <!-- big screens --> <screen android:screendensity="hdpi" android:screensize="large" /> <screen android:screendensity="xhdpi" android:screensize="large" /> <!-- xlarge screens --> <screen android:screendensity="hdpi" android:screensize="large" /> <screen android:screendensity="xhdpi" android:screensize="xlarge" /> </compatible-screens> <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>

i uploaded application google play started trying on different android phones. devices found application in search results , devices not find. lg g2 not find application. sended application link google play said not compatible.

you adding (optionnal) list of compatible screens.

actually, lg g2 has these properties : 1920 x 1080p 432 ppp definition.

in official documentation (link official doc), can read :

note: attribute not take xxhdpi valid value, can instead specify 480 value, approximate threshold xhdpi screens.

so add together (adjust if needed) lg g2 :

<screen android:screendensity="480" android:screensize="xlarge" />

for future, sure need limit screen sizes. making limits app here : sure not forget 1 screen size.

sources & links

compatible-screens documentation

range of screens supported

android playback

No comments:

Post a Comment