Dropbox API/SDK 3.0.5
Android target 19
After verifying there is no saved access token, I'm kicking off the authentication flow with:
Auth.startOAuth2Authentication(getApplicationContext(), getString(R.string.app_key));
And then I retrieve/check the access token in the onResume() of my activity. If the Dropbox app is installed on the device, everything works great. If the Dropbox app isn't installed, no token is retrievable/available when control is passed back to the activity. I am prompted for credentials and permissions via the Dropbox website. I have the appropriate Dropbox activity defined in my AndroidManifest.xml with the appropriate db key.
<data android:scheme="db-xxxxxxxxxxxxxxx" />
I've been searching all day and haven't hit on the right search string to obtain any insight. Any help would be greatly appreciated. Thanks.