Hi Mark, thanks very much for your reply.

I imported gdata-core-1.0.jar and gdata-spreadsheet-1.0.jar into my
project and the SpreadsheetService class comes from the latter.  The
HTTP requests must be being done in the setUserCredentials method (all
inside those two jars).  Perhaps one of those jars is not compatible
with android?  Is there a support matrix somewhere that I can check?
I'm a little bit confused as to why there would be incompatibilities -
can you elaborate?

My manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.mydomain.hello"
      android:versionCode="1"
      android:versionName="1.0.0">
    <application android:icon="@drawable/icon" android:label="@string/
app_name">
        <activity android:name=".HelloAndroid"
                  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.INTERNET"></uses-
permission>
</manifest>

I appreciate your help.
cheers,
Ian


On Oct 13, 8:41 pm, Mark Murphy <[EMAIL PROTECTED]> wrote:
> androidian wrote:
> > By the way, I'm running android NOT from behind a proxy ( I have
> > direct internet access).  Also, the built in browser works fine, so
> > it's definitely something with my app which is at fault.
>
> > Anyone got any ideas on this one?
>
> Can you post your manifest?
>
> >> This is just by using the following code in my app:
>
> >> SpreadsheetService myService = new SpreadsheetService(
> >>                                 "mydomain.com-myapp-1");
> >> myService.setUserCredentials("[EMAIL PROTECTED]",
> >>                                 "mypassword");
>
> Ummmm...the SDK doesn't have a SpreadsheetService. I'm assuming that
> either you wrote it or it's a third-party JAR.
>
> Can you provide any code around the point of where actual HTTP requests
> are being made? If that's buried in a third-party class, it may be that
> it's not compatible with the version of support libraries inside Android.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
>
> Android Training on the Ranch! -- Mar 16-20, 
> 2009http://www.bignerdranch.com/schedule.shtml
--~--~---------~--~----~------------~-------~--~----~
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