Hello all,

I was makeing some updates to my apps and while in the process of
making changes, my PC lost power and shutdown. I restarted it and
opened everything back up with seemingly o problems. When I then
finished and went to upload the changes to the market I got the
dreaded "The server could not process your apk. Try again." error. I
did some research and checked the most common causes, uses-sdk... and
the appname, NOTHING IS WORKING... I have updated and reinstalled the
SDK and Eclipse.. No luck..


I need to get this update published, ANYONE, please help..

Thanks,

LK

below is my manifest.xml...


<?xml version="1.0" encoding="utf-8"?>
<manifest
        android:installLocation="auto"
        xmlns:android="http://schemas.android.com/apk/res/android";
        package="com.kaboserv.mnlaw.chapter609" android:versionName="1.1"
        android:versionCode="2">

    <uses-sdk
    android:maxSdkVersion="9"
    android:minSdkVersion="4"
    android:targetSdkVersion="4"/>



    <application android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:icon="@drawable/t39_icon">



<activity
        android:screenOrientation="landscape"
        android:name=".SplashScreen"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        android:label="@string/app_name">
        <intent-filter>
        <action android:name="android.intent.action.MAIN"></action>
                <category android:name="android.intent.category.LAUNCHER"></
category>
                <action android:name="android.intent.action.SEARCH"></action>
        </intent-filter>
</activity>




<activity
android:name=".Kabo">
        <intent-filter>
                <action 
android:name="com.kaboserv.mnlaw.chapter609.Kabo"></action>
                <category 
android:name="android.intent.category.DEFAULT"></category>
                <action android:name="android.intent.action.SEARCH"></action>
        </intent-filter>
        <meta-data
                android:name="android.app.searchable"
                android:resource="@xml/searchable"/>
        </activity>

        <activity android:name=".ViewDetail"><intent-filter>
        <action android:name="com.kaboserv.mnlaw.chapter609.ViewDetail"></
action>
        <category android:name="android.intent.category.DEFAULT"></category>
        </intent-filter>
        </activity>

                <provider android:name=".MySearchProvider"
        
android:authorities="com.kaboserv.mnlaw.chapter609.MySearchProvider" /
>

            <activity android:name="Preferences"
android:label="Preferences"></activity>

</application>
</manifest>

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

Reply via email to