This Android code was working fine with dropbox-core-sdk-2.1.1 but when I updated to dropbox-core-3.0.3, this code produced a compile error:
DbxRequestConfig.Builder a = DbxRequestConfig.newBuilder("MyAppName");
DbxRequestConfig.Builder b = a.withHttpRequestor(OkHttp3Requestor.INSTANCE);
DbxRequestConfig requestConfig = b.build(); The error is:
Error:(97, 70) error: cannot find symbol variable INSTANCE
Why?