2013-06-19 2 views
6

2 일 전 Google Play에서 베타 테스트 버전으로 내 앱을 게시했으며 이에 대한 테스터 그룹을 추가했습니다. 앱을 선택할 수는 있지만 Google Play 앱과 웹에서 앱이 계속 표시되지 않습니다. 관련 정보가 많이 잘못 표시됩니다.Google Play 베타 테스트 및 게시 문제

현재 버전 : 기기에 따라 다릅니다.
이게 무슨 의미입니까? 우리는 매니페스트

<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="17" /> 

과 project.properties에

target=android-16 

크기 사용이 잘못 1.6
:

이 필요한 Android 장치
에 따라 다릅니다 어떻게이 정보를 지정할 수 있습니까?

또한 Google Play 웹 인터페이스는이 앱이 이전에 개발 한 기기와 호환되지 않는다고 말합니다. (넥서스 7).

내가 뭘 잘못하고 있니?

+0

잘못된 매니페스트를 업로드하지 않았습니까? – Raptor

+0

매니페스트는 괜찮습니다 ... 개발 중에는 항상 잘 작동하기 때문에 관련 오류가 표시되지 않습니다. – mrAlmond

+0

이상한 점은 개발자 콘솔에서 볼 수 있습니다 : API 레벨 16+ 맞습니다! 제 생각에는 이것이 베타 테스트 앱의 Google Play 버그 일 수 있다고 생각합니다. :-( – mrAlmond

답변

1

Nexus 7과의 호환성 문제를 해결했습니다.
Google Play에서 지원되는 화면 크기 및 카메라 사용 권한에 대한 버그 인 것 같습니다. 이것은 내가 추가 한 것입니다 :

<uses-permission android:name="android.permission.CAMERA" /> 

<uses-feature android:name="android.hardware.camera" android:required="false" /> 
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/> 
<uses-feature android:name="android.hardware.usb.host" android:required="false" /> 

<compatible-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" /> 

    <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" /> 

    <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" /> 

    <screen android:screenSize="large" android:screenDensity="213" /> 
</compatible-screens> 
+0

처음 3 줄 (android.permission.CAMERA, android.hardware.camera, android.hardware.camera.autofocus)은 앱이 1 세대 Nexus와 호환되지 않는다고 주장하는 Play 스토어 문제를 해결했습니다. 7 for me. 이전에 android.hardware.camera을 사용하고 있었는데, 이는 기본적으로 기본으로 설정되어있는 것 같습니다. 1 세대 Nexus 7의 전면 카메라는 canera로 간주되지 않습니다. – DataGraham

관련 문제