2012-12-24 2 views
4

apk 0 devices http://s9.postimage.org/54vilhlf3/apk.png image link구글 TV : 지원되는 안드로이드 장치 0 장치

이 내가 메시지 누군가가 내 내가 만들고있어 무엇을 말할 수있다 "0 장치가 suported있다"GET 끝을 플레이 구글에 업로드하는 내 Google TV 애플리케이션 매니페스트입니다 잘못된 내가 당신의 minSdkVersion이 될 필요가 생각

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="*******" 
    android:versionCode="12" 
    android:versionName="1.081" > 

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

    <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> 
    <uses-feature android:name="com.google.android.tv" android:required="true"/> 


    <application 
     android:name=".App" 
     android:icon="@drawable/logo_min" 
     android:label="@string/app_name" > 
     <activity 
      android:name=".WelcomeActivity" 
      android:label="@string/title_activity_main" > 
      <!-- android:screenOrientation="landscape" --> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

답변

2

"apt dump badging"을 사용하면 볼 수 있지만 APK에서 네이티브 도구 (차트의 기본 플랫폼) (예 : 포함 된 라이브러리)를 요청하는 것 같습니다.

네이티브를 사용하면 현재 Google TV에 ​​표시되지 않습니다.

필자는 기능에서 대문자 TV에 대해 조금 걱정합니다.

1

을 (내가 Google TV에서 장치를 대상으로 지정할) (11)

참조 : https://developers.google.com/tv/android/docs/gtv_market_publishing_checklist

+0

나는 minSdkVersion 11도 시도했는데 같은 결과를 보였습니다. – Safareli

+0

나머지 매니페스트 파일은 정상적으로 보입니다. 자신의 활동 중 인물 모드를 요청하고 있습니까? NDK를 전혀 사용하지 않습니까? –

+0

자바를 사용하고 있습니다. 아니, 내가 초상화 모드를 요구하지 않고있어. – Safareli