Hi,
I've been left to maintain an Android application that on a couple of devices has stopped working, and I've traced it down to something which I believe is quite strange. I've typed in the code in question below rather than cut and paste, so excuse any typing errors.
try
{
if (mgr.hasLinkedAccount())
{
thisAccount = mgr.getLinkedAccount();
fs = DbxFileSystem.forAccount(thisAccount);
}
}
The problem is that I get "True" back from hasLinkedAccount(), but after the call to getLinkedAccount() returns thisAccount is always Null.
Has anyone else come across this problem? I've tried (briefly) using the absolute latest lib (jar) but that doesn't even get past the first Dropbox call.
Regards,
Francis Lillie