It seems you missed the library for Dropbox (native part)
you can see that at the bottom of your stacktrace
Caused by: java.lang.UnsatisfiedLinkError: Library DropboxSync not found at java.lang.Runtime.loadLibrary(Runtime.java:489) at java.lang.System.loadLibrary(System.java:557) at com.dropbox.sync.android.NativeHttp.<clinit>(NativeHttp.java:411) ... 20 more
check library loading or documentation where you can get the missing library file
[UPDATE] . How to use custom libraries with android studio installation
Put your * .so files inside the libs folder next to the src folder
task copyNativeLibs(type: Copy) { from(new File('libs')) { include '**/*.so' } into new File(buildDir, 'native-libs') } tasks.withType(Compile) { compileTask -> compileTask.dependsOn copyNativeLibs } clean.dependsOn 'cleanCopyNativeLibs' tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask -> pkgTask.jniDir new File(buildDir, 'native-libs') }
source share