我最近发布的Play商店没有让我在没有minSdkVersion的情况下发布我的应用程序,但每当我将其设置为高于“1”的任何内容时,我的应用程序都无效(minSdkVersion breaking program)。
所以这家伙建议将我的minSdkVersion设置为1,这有效。但是现在当我提交我的应用程序时,即使开发者网站说:
API level: 1-16+
Supported screens: normal-xlarge
OpenGL textures: all
但是the app只显示它支持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>