2012-05-31 22 views
2

我迷路了。
我有一个Android 2.3.1(wifi only,1024 * 768)的中文平板电脑(CubeU10GT-S)。我开发了一款应用程序,并在该设备上进行了测试。但上传市场它与我的平板电脑不兼容(可能与许多类似的)...
我请求最小的权限/功能集 - 任何人都可以告诉我为什么appstore过滤掉我的平板电脑?为什么我的应用程序不适用于Android市场中的我的设备?

这里是清单:

<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> 
+0

谷歌没有告诉你为什么?更重要的是...你问过他们吗? – cHao

+0

你的意思是支持?我还没有问过他们......我不相信他们会回答任何事情,除了“检查指南”。否则,论坛上不会有类似的问题。即使在这里也有几个问题 – user1390456

回答

0

我应该关掉从复制保护。当我做了它(和几个小时过去了),我的应用程序变得兼容2我的设备(第三个太老sdk)

+0

如何关闭复制保护? –

相关问题