2012-12-24 91 views
4

apk 0 devices http://s9.postimage.org/54vilhlf3/apk.png image link谷歌电视:支持Android设备0设备

这就是我上载的谷歌播放结束时,我得到的消息“0装置支载”有人可以告诉我什么,我做我的谷歌电视的应用程序清单错 (我想针对GoogleTV的设备)

<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

您可能希望使用“aapt dump badging”来查看,但它看起来像APK中的某些内容请求本地工具(图表中的本机平台) - 可能是您包含的库?

当然,使用本机任何东西都会阻止您在Google TV上显示。

我还特别关注大写字母电视。