最近、PlayストアでminSdkVersionなしでアプリを公開できないことについて投稿しましたが、「1」を超える値に設定すると、アプリが機能しなくなります(minSdkVersion Breaking Program)。
したがって、この男は私の 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>