我最近发布了关于 Play 商店不允许我在没有 minSdkVersion 的情况下发布我的应用程序的帖子,但是每当我将其设置为高于“1”的任何值时,我的应用程序都无法正常工作(minSdkVersion 破坏程序)。
所以这个人建议将我的 minSdkVersion 设置为 1,这很有效。但是现在当我提交我的应用程序时,即使开发者网站说:
API level: 1-16+
Supported screens: normal-xlarge
OpenGL textures: all
但该应用程序仅显示它支持 4.x 下的 Android,我在我的 4.0.4 设备上开发它。我试着四处搜索,发现有些人的服务会弄乱它支持的手机,所以我删除了我所有的服务,因为我真的不需要提交这个版本的应用程序。它仍然没有工作。所以我不知道还能做什么,如果有帮助,这是我的 AndroidManifest.xml ......非常感谢!
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unparalleledsoftware.applist"
android:versionCode="4"
android:versionName="2.01" >
<uses-sdk android:minSdkVersion="1"/>
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light">
<activity android:name="com.unparalleledsoftware.applist.applist"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:process=":remote" android:name="com.unparalleledsoftware.applist.AlarmReceiver"></receiver>
</application>
</manifest>