1

I am new to Android development. I built a app that accesses a webpage using webview. It's minimum sdk version is 7, which is Android version 2.1. It runs on my phone which is a droid x2 version 2.3.4. However, when I sent it to my friend who has android 2.2, it says Problem Parsing Package on the install screen. I have asked on the #android-dev IRC and they have no idea. Please help. Here is the Manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.alan.ALICE"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >

    <activity
        android:name=".ALICE"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>
4

1 回答 1

1

这通常是文件本身的问题,而不是 sdk 版本的问题。你是如何签署和打包apk的?尝试在 Eclipse 中右键单击您的项目名称并转到导出。

于 2012-02-19T04:39:07.490 回答