1
방금 첫 번째 앱을 시장에 업로드했으며 무려 1198 개의 기기를 지원합니다. 같은 장치 :첫 번째 앱을 Play에 설치할 수 없습니다. 지원되는 기기 사이의 갤럭시 넥서스, 내 넥서스가 아님
http://i.stack.imgur.com/afQxC.png
하지만 내 휴대 전화에 설치하려고 할 때, 그것은 보이지 않는다 작동합니다 :
http://i.stack.imgur.com/hQTKM.png
이 물론 내 개발자 전화의, 그래서 그것은 말도 안돼. Android 4.2.2, JDQ39 빌드.
제가 놓친 명백한 것을 살펴보고 지적 해 주시겠습니까? 제발요?
내 매니페스트는 다음과 같습니다
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="se.krizan.knihajazd"
android:versionCode="5"
android:versionName="0.2.3" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<compatible-screens>
<!-- small size screens -->
<screen android:screenSize="small" android:screenDensity="ldpi" />
<screen android:screenSize="small" android:screenDensity="mdpi" />
<screen android:screenSize="small" android:screenDensity="hdpi" />
<screen android:screenSize="small" android:screenDensity="xhdpi" />
<!--Only hdpi and xhdpi for normal size screens -->
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />
<!-- all large size screens -->
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />
<!-- all xlarge size screens -->
<screen android:screenSize="xlarge" android:screenDensity="ldpi" />
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
<screen android:screenSize="xlarge" android:screenDensity="hdpi" />
<screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
</compatible-screens>
<permission
android:name="se.my.application.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="se.my.application.permission.MAPS_RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<meta-data android:value="true" android:name="ADMOB_ALLOW_LOCATION_FOR_ADS" />
이상한 점은 내 Nexus 7과 호환되지 않는다는 것입니다. 4.2.2도 마찬가지입니다. 매니페스트에''과'supported-screens'이 있어야합니까? 내가 취한 Android 코스에 대한 위치 기반 앱을 게시했는데 내 매니페스트에 해당 값이 포함되어 있지 않았습니다. –
HeatfanJohn
앱이 표시되지 않는 이유를 설명하는 질문 http://stackoverflow.com/questions/11691775/why-my-app-is-not-showing-up-on-tablets-in-google-play를 확인하세요. 내 넥서스 7. 아마도 개발자 휴대 전화와 동일한 문제 일 수 있습니다. 휴대 전화의 DPI가 나와있는 휴대 전화 중 하나가 아닌 경우가 있습니다. 다시 말하지만, 이것을 모두 지정해야합니까? – HeatfanJohn
이상한 앱은 내 Galaxy Nexus에 설치할 수 있습니다. 각 화면 크기에 대해 지원되는 DPI를 지정하려는 특별한 이유가 있습니까? 앱이 실제로 모든 화면 크기의 모든 DPI에서 작동하는 경우 해당 사양을 제거 할 수 있습니다. 현재로서는 앱이 tvdpi (Nexus 7) 및 xxhdpi (HTC Butterfly, HTC ONE, Galaxy S4 및 향후 모든 Android 대표 전화)를 지원하지 않는다고 명시하고 있습니다. – Kai