2016-07-13 12 views
1

こんにちは、私はこの狂った問題を解決するために必要と手を全部要します。ユーザーは、互換性のないデバイスのため、Playストアからアプリをダウンロードできないと教えてくれます。Androidと互換性のないデバイス

<compatible-screens> 

    <!-- normal --> 
    <screen 
     android:screenDensity="mdpi" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="hdpi" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="xhdpi" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="480" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="640" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="560" 
     android:screenSize="normal" /> 

    <!-- large --> 
    <screen 
     android:screenDensity="mdpi" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="hdpi" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="xhdpi" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="480" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="640" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="560" 
     android:screenSize="large" /> 


</compatible-screens> 


<uses-feature 
    android:name="android.hardware.telephony" 
    android:required="true" /> 

誰も私を提案することができない可能性のある原因:https://play.google.com/store/apps/details?id=com.alitalia.mobile&hl=it

マニフェストには、錠剤を除外するためにいくつかの制限があります。彼は8

アプリケーションがあるHuaweyメイトを持っていますか?

+0

ここをクリックしてください:http://stackoverflow.com/a/15548054/3838663 – DAVIDBALAS1

答えて

0

xxhpdiとxxxhdpiの画面を省略して除外しています。 https://developer.android.com/guide/practices/screens_support.html

+0

まずはお返事ありがとうございます。 Googleのドキュメントによると:https://developer.android.com/guide/topics/manifest/compatible-screens-element.html あなたはandroidのxxhdpiとxxxhdpiが間違っていると思いますか?screenDensity? –

+0

タブレットが不要な場合に除外するサイズを確認できます。https://developer.android.com/images/screens_support/screens-ranges.png 密度とサイズは同じではありません。タブレットを除外するには、サイズを省略する必要がありますが、電話をサポートするにはすべての密度を含める必要があります。 –

0

chagne android.hardware.telephonyrequired=falseに(アプリはその将来を使用してはならない場合)アプリケーションが特定のデバイスのためではない場合も、すべての<compatible-screens>要素を削除します。新しいAPKをアップロードし、サポートされているデバイス数を確認してください。

+0

コメントありがとうございますが、すべてのタブレットを除外する必要があります。あなたはそれを行うためのよりよい解決策を持っていますか? –

+0

これを確認してくださいhttps://developer.android.com/guide/practices/screens-distribution.html#FilteringHandsetApps –

関連する問題