1

after updating Dropbox SDK API from Version 5.4.6 to 6.1.0 (in Java) Auth-Class isn't recognised.

dropbox-core-sdk:5.4.6' -> dropbox-core-sdk:6.1.0'

I use Auth-Class for PKCE Auth-Flow for following callings (examples):

Auth.startOAuth2PKCE
Auth.getDbxCredential
Auth.startOAuth2Authentication

I can't find any hint in documentation was dropbox changed or how to handle these changes.

Thanks, GGK

0

1 Answer 1

3

as documentation says here, You have to add following dependencies:

implementation 'com.dropbox.core:dropbox-core-sdk:6.1.0'
implementation 'com.dropbox.core:dropbox-android-sdk:6.1.0'

SDK Version 5.4.0 only needs Core-SDK while 6.1.0 needs both of them

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.