Hi,
I currently develop Android app for user to upload their files to Dropbox. My app can upload <300MB file to user's Dropbox account. But large file is failed all the times.
My development environment is Windows 10 and use Android Studio IDE. I had updated dropbox SDK version to 3.1.1 in Gradle build. And refered to official sample code as below:
DbxRequestConfig requestConfig = DbxRequestConfig.newBuilder("APP Name")
.build();
mDbxClient = new DbxClientV2(requestConfig, accessToken);
Then I see the log "com.dropbox.core.BadResponseCodeException: unexpected HTTP status code: 413: null" when error happened. Please help me to fix this issue. Thanks!