Я пытался опубликовать приложение на рынке Android, и все время получаю эту ошибку: «Рынок требует, чтобы minSdkVersion был установлен на положительное 32-разрядное целое число в AndroidManifest.xml». Я просмотрел все остальные сообщения иследовал инструкциям по добавлению android: minSdkVersion и android: targetSdkVersion, и он по-прежнему выдает ту же ошибку, когда я пытаюсь загрузить новый файл .apk.Вот мой манифест.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.seeshi.coffee"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:theme="@style/CoffeeStyle"
android:label="@string/app_name" android:debuggable="false">
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="4" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<activity android:name=".Start"
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=".Browse" />
<activity android:name=".CoffeeTypes" />
</application>