2013-08-04 4 views
0

라이브 배경 화면을 게시했지만 휴대 전화의 Google Play에서만 볼 수 있습니다. 태블릿의 Google Play에서 검색하면 해당 항목을 찾을 수 없습니다. 태블릿에 수동으로 배경 화면을 설치하려고했지만 문제없이 실행됩니다. 어떻게 든 내 라이브 벽지가 태블릿에 적합하지 않다는 것을 결정하고 내 애플을 숨겨 줍니까? 고맙습니다!!라이브 배경 화면이 태블릿의 Google Play에 표시되지 않음

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.tdf.freshpaper" 
    android:versionCode="3" 
    android:versionName="0.9">  
<uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="17" /> 

<uses-feature 
    android:name="android.software.live_wallpaper" /> 

<application 
    android:icon="@drawable/logo" 
    android:label="@string/app_name" > 
    <service 
     android:name="com.tdf.fresh.MainActivity" 
     android:description="@string/wallpaper_description" 
     android:enabled="true" 
     android:permission="android.permission.BIND_WALLPAPER" > 
     <intent-filter android:priority="1"> 
      <action android:name="android.service.wallpaper.WallpaperService" /> 
     </intent-filter> 

     <meta-data 
      android:name="android.service.wallpaper" 
      android:resource="@xml/wallpaper" /> 
    </service> 

    <activity 
     android:name="com.tdf.fresh.SettingsActivity" 
     android:exported="true"`` 
     android:theme="@android:style/Theme.NoTitleBar" > 
    </activity> 

</application> 
당신 Google Play Developer Console에의

답변

0

로그, 섹션 호출 Optimization Tips이 있어야합니다. 어떤 이유로 든 앱이 태블릿과 호환되지 않는 경우 그 이유를 찾을 수 있습니다.

어쨌든 당신은 당신의 매니페스트에서 이것을 시도 할 수 있습니다 : 답장을

<supports-screens android:largeScreens="true" android:xlargeScreens="true"/> 
+0

안녕하세요, 감사합니다. 그러나 Google 검색에서 태블릿에 검색 할 수있는 lwp를 원하면 어떻게할까요? 내 lwp 꽤 타블렛 친절하지 않기 때문에. –

+0

나는 그것이 가능하다고 생각하지 않는다. – Androiderson

관련 문제