• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Parsing Error???

l4nce0

Newbie
I'm trying to install my application. I originally wrote it in 2.2, and thus I failed to get it on my phone. I went back changed it in settings to 2.1 and 2.1 update. I pushed it with email, drop box and then tried andexplorer. Each time I try to install it, it fails!! I get a parse error, there is a problem parsing the package. . . Any ideas? The solutions online did not solve my issue
 
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="jim.convereter"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".convert"
                  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>
    <uses-sdk android:minSdkVersion="8" />

</manifest>
 
okay seriously? The last parsing error posting on this thread had no problem with replies. It's already burred. What gives? Wrong section?
 
Back
Top Bottom