Today I got a email about Asking update dropbox SDK from dropBox API team.
So I changed pom.xml like below.
(I'm a Java server developer.)
<!-- https://mvnrepository.com/artifact/com.dropbox.core/dropbox-core-sdk -->
<dependency>
<groupId>com.dropbox.core</groupId>
<artifactId>dropbox-core-sdk</artifactId>
<version>3.0.3</version>
</dependency>
And then I've met a compile error
"The type com.dropbox.core.DbxRequestConfig cannot be resolved. It is indirectly referenced from required .class"
at this code
DbxRequestConfig config = new DbxRequestConfig("myApp/1.0");
and "DbxException can not be resolved" error too.
but when I had import SDK 3.0.2 there is No compile Error.
What shall I do? Can I use 3.0.2 instead of 3.0.3 ?
I use only 4 methods what access to dropBox folder.
client.files().move( )
client.files().delete( )
client.files().uploadBuilder(path).uploadAndFinish( );
client.files().downloadBuilder(path).download( )