我创建了一个简单的应用程序,我刚上传了我的apk。我注意到大约有100个设备不受支持。
我的清单没有请求任何许可。关于导致这种情况或如何解决问题的任何想法?
<code>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".asdfActivity"
android:screenOrientation="landscape"
android:theme="@style/CustomNoTitle" >
<intent-filter>
<action android:name="android.intent.action.asdf" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".asdf2Activity"
android:screenOrientation="landscape"
android:theme="@style/CustomNoTitle" >
<intent-filter>
<action android:name="android.intent.action.asdf2" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".asdf3Activity"
android:theme="@style/CustomNoTitle" >
<intent-filter>
<action android:name="android.intent.action.asdf3" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".asdf4Activity"
android:theme="@style/CustomNoTitle" >
<intent-filter>
<action android:name="android.intent.action.asdf4" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</code>
答案 0 :(得分:0)
更改基线android:minSdkVersion =&#34; 4&#34;到android:minSdkVersion =&#34; 8&#34;看看它是否有效。
如果不是根据您的要求添加以下标记。
e.g。
<supports-screens android:resizeable=["true"| "false"]
android:smallScreens=["true" | "false"]
android:normalScreens=["true" | "false"]
android:largeScreens=["true" | "false"]
android:xlargeScreens=["true" | "false"]
android:anyDensity=["true" | "false"]
android:requiresSmallestWidthDp="integer"
android:compatibleWidthLimitDp="integer"
android:largestWidthLimitDp="integer"/>
和
<compatible-screens>
<screen android:screenSize=["small" | "normal" | "large" | "xlarge"]
android:screenDensity=["ldpi" | "mdpi" | "hdpi" | "xhdpi"] />
...
</compatible-screens>
参考。链接:
http://developer.android.com/guide/topics/manifest/supports-screens-element.html
http://developer.android.com/guide/topics/manifest/compatible-screens-element.html
答案 1 :(得分:0)
这是一种权衡。总有一些设备你的应用程序无法完全兼容。它们是一些旧时尚的生产设备。当你想要与大多数设备兼容时,一些高具有更高系统操作系统版本的终端设备和您无法支持的功能。
你的应用程序不支持100个设备。但是你可以支持超过8000个设备。我认为专注于多数人并花更多钱来改善他们的体验会更有效。
也许我的回答不能直接解决你的问题。希望它可以让你不再困惑。