开发者

Android Error - Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml

开发者 https://www.devze.com 2023-03-17 01:49 出处:网络
I\'m trying to upload an App onto the Market Place and i\'m getting the following error \"Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml.\" after i exp

I'm trying to upload an App onto the Market Place and i'm getting the following error "Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml." after i export the signed Application Package using Eclipse. My Manifest File looks like the following:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.recipes开发者_JAVA技巧"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk minSdkVersion="7" 
                android:targetSdkVersion="8"/>
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>

Anyone know why i'm getting this error?

Thanks,

O

0

精彩评论

暂无评论...
验证码 换一张
取 消