gpt4 book ai didi

android - Googleplay - 不支持的设备兼容性

转载 作者:行者123 更新时间:2023-12-02 09:43:57 25 4
gpt4 key购买 nike

我创建了一个简单的应用程序,我刚刚上传了我的 apk。我注意到大约有 100 个设备不受支持。

我的 list 没有请求任何许可。关于导致此问题的原因或如何解决此问题的任何想法?

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

最佳答案

这是一个权衡。总有一些设备你的应用程序无法完全兼容。它们是一些老式的、停产的设备。当你想与大多数设备兼容时,一些高端设备与更高的系统操作系统版本和您无法支持的功能。

enter image description here

您的应用不支持 100 台设备。但是您可以支持超过 8000 台设备。我认为关注大多数人并花更多的钱来改善他们的体验会更有效。

也许我的回答不能直接解决你的问题。希望它能让你不再困惑。

关于android - Googleplay - 不支持的设备兼容性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28059417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com