After using apkbuilder to make an apk file and then jarsigning it with
a certificate good for 100 years, I'm getting this strange error when
attempting to upload:

The file is invalid: W/ResourceType(29469): Bad XML block: header size
28024 or total size 1702240364 is larger than data size 973 ERROR:
AndroidManifest.xml is corrupt

This is the same error I get if I let apkbuilder sign it.

The application builds and runs just fine on my phone via ABD/DDMS in
Eclipse. Couldn't find anything relating to this error out on the web.

Here is my manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
        android:versionCode="1" android:versionName="1.0.0"
        package="info.yoosefi.android.scout">
        <application android:debuggable="true" android:label="@string/
app_name"
                android:persistent="true" android:icon="@drawable/icon">
                <activity android:name=".scout" 
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-permission android:name="android.permission.ACCESS_WIFI_STATE" /
>
        <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /
>
        <uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE" />
        <uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION" />
        <uses-permission android:name="android.permission.WRITE_OWNER_DATA" /
>
</manifest>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to