Comments
-
I'll check it, thanks.
-
Thanks!
-
Hi, Thanks very much it's working now. I have another question about getting the account username, please see here: https://stackoverflow.com/questions/49262951/what-is-the-equivalent-for-getaccountinfo-username-in-dropbox-api-v2 Thanks.
-
Hi Greg, I still have to learn how to use the Stack Trace, so for now I used something like this: try { Auth.startOAuth2Authentication(mContext, "2eh.........8g0"); } catch(Exception Ex) { errorStr = Ex.getMessage(); ..... } And the errorStr shows: java.lang.IllegalStateException: There must be a…
-
Hi Greg, 1. As I understand I should call: startOAuth2Authentication(...); only once, does it matter where I call it? can I just call it in the OnCreate() method of my class? 2. I tried to call it from several places and every time it's cause my application to crush. The call is something like that:…
-
Thanks very much now It's understood... I thought that it should Login to the Dropbox on every new run so I thought that it should stop on the breakpoint every time. And yes I was in debugging mode (Shift + F9 on the Android Studio). I will continue with this next week and let you know. Thanks!
-
Thanks very much, I'm trying to implement it right now. In the meantime, I'm just wondering, why when I'm putting a breakpoint on the line: Auth.startOAuth2Authentication(UserActivity.this, getString(R.string.app_key)); in the "Android" example, it's never stopping there? does it makes sense? it looks like the code is…
-
Thanks very much! Sorry somehow I missed that part, now it's working. Last question, the instructions ask to run this file: ..\DropboxApiV2\dropbox-sdk-java-master\gradlew.bat What does it do? I didn't see any change in the folder after running this file, it just opened a black cmd window for a very short time and then it…
-
Hi, About the 'android:testOnly' error, sorry it was my mistake, I got this error for the "DBRoulette" example that was provided in the "dropbox-android-sdk-1.6.3.zip" file, I guess that it's the old v1 sdk, am I right? OK so I did the following: 1. I extracted the "dropbox-sdk-java-master.zip" file into an empty folder.…
-
Thanks very much! It looks like you gave me some good starting points. I will check it.
-
OK Thanks, I will check it.
-
Thanks, but it's not clear to me, how do I download and compile/build the example project at your second link? (Android app example) I don't see any download link for the whole project, should I download the files one by one? It doesn't looks so logic. Another question, as I understand your old API v1 is not supported…