2016-07-13 3 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 xroid와 xxxhdpi가 android : 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을 확인하십시오. –

관련 문제