2012-10-25 2 views
0

내 앱이 Google Play 마켓에 표시되지 않습니다. 개발자 콘솔을 통해 게시했습니다. 그러나 앱이 https://play.google.com/store/apps/details?id=not.visible.app에도 표시되지 않습니다 (문제를 설명하기위한 가짜 패키지 임).앱이 Google Play에 표시되지 않으며 앱 링크가 작동하지 않는 경우에도 작동하지 않습니다.

왜 작동하지 않는지 잘 모르겠습니다.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="not.visible.app" 
android:versionCode="1" 
android:versionName="1.0" > 

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

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

<application 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/Fake"> 
    <activity android:name=".LoginActivity" android:theme="@android:style/Theme.NoTitleBar"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity android:name=".MainMenuActivity" android:theme="@android:style/Theme.NoTitleBar"></activity> 
</application> 

도와주세요 : 여기 내 매니페스트 파일입니다.

+0

업로드 apk 파일 후에 응용 프로그램을 게시 하시겠습니까? –

답변

0

앱이 마켓에 표시 될 때까지 최대 하루 정도 걸립니다. 언제 업로드 했습니까?

+0

약 2 시간. 직접 링크로 바로 표시해야한다고 생각하십니까? – Sergey

+0

다음 링크와 같은 의미입니다. https://play.google.com/store/apps/details?id=not.visible.app – Sergey

+0

아니요. 첫 번째 앱과 동일한 문제가 있습니다. 몇 시간이 걸렸습니다. 그러나 그 때 그것은 잘 작동했다. 또한 업데이트를 업로드 할 때 새 버전이 출시 될 때까지 몇 시간이 걸리며 사용자에게 알리는 메시지가 나타납니다. – PKeidel

1

나는이 필요한 경우 몰라요,하지만 당신은 예를 들어, 매니페스트에 화면 지원을 넣어해야합니다

<supports-screens android:normalScreens="true" android:xlargeScreens="true" android:largeScreens="true" android:smallScreens="true"></supports-screens> 

그러나 당신이 2/3 시간을 기다려야한다 PLAYSTORE에 응용 프로그램을 볼 수 있습니다.

+0

나는 supportet 스크린을 자극하지 않았으며 시장의 App 정보는'Screen layouts : small, normal, large, xlarge'를 의미합니다. 그래서 일부 화면 유형을 제외하려는 경우에만 필요하다고 생각합니다. – PKeidel

관련 문제