谷歌戏称您的设备的心不是使用这个应用程序兼容 [英] Google Play Says Your Device isnt compatible with this application

查看:206
本文介绍了谷歌戏称您的设备的心不是使用这个应用程序兼容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想我的问题都解决方案。
这里是我的清单code

I tried all solutions for my problem. here is my 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>

    <!-- all 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" />
    <!-- large 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>

我上传的应用程序谷歌玩,然后开始尝试在不同的Andr​​oid手机。
有些设备发现在搜索结果中的应用和一些设备无法找到。
LG G2找不到应用程序。我sended应用程序链接那么谷歌说戏不兼容。

I uploaded application to google play then started trying on different android phones. Some devices found application in search results and some devices could not find. Lg G2 could not find application. I sended application link then google play said not compatible.

推荐答案

它看起来像你想支持所有的屏幕尺寸?

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>

这篇关于谷歌戏称您的设备的心不是使用这个应用程序兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆