【问题标题】:Why my app is not available for my device in android market?为什么我的应用无法在 android 市场上用于我的设备?
【发布时间】:2012-05-31 17:46:13
【问题描述】:

我迷路了。
我有一台装有 Android 2.3.1 的中文平板电脑 (CubeU10GT-S)(仅限 wifi,1024*768)。我开发了一个应用程序,该应用程序也在此设备上进行了测试。但是上传到市场上它与我的平板电脑不兼容(可能与很多类似的平板电脑兼容)...
我请求最少的权限/功能集 - 谁能告诉我为什么 appstore 会过滤掉我的平板电脑?

这是清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="indigowind.spyprofile"
      android:versionCode="4"
      android:versionName="1.3">

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

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

    <uses-feature android:name="android.hardware.screen.landscape" android:required="false"/>
    <uses-feature android:name="android.hardware.touchscreen" android:required="true"/>

    <application 
        android:icon="@drawable/icon" 
        android:label="@string/app_name"
        android:debuggable="false">
        <activity 
            android:name="SpyProfileActivity"
            android:label="@string/app_name"
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity            
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:name="com.google.ads.AdActivity" 
        />
    </application>

    <supports-screens 
        android:largeScreens="true" 
        android:normalScreens="true" 
        android:smallScreens="true"
        android:resizeable="true"
        android:anyDensity="true"  />
</manifest>

【问题讨论】:

  • 谷歌没有告诉你为什么?更重要的是……你问过他们吗?
  • 你的意思是支持?我还没有问过他们……我不相信他们会回答任何问题,除了“检查指南”。否则论坛上不会有类似的问题。即使在这里也有几个类似的问题

标签: android filter tablet google-play


【解决方案1】:

我应该关闭复制保护。当我这样做时(几个小时过去了),我的应用程序与我的 2 台设备兼容(第 3 台的 sdk 太旧了)

【讨论】:

  • 如何关闭复制保护?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-10-31
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多