I am trying to integrate dropbox into my Android project after the tutorial on the Dropbox website. I referenced all the libraries that were in the sdk / libs path, "Add External JARs" to the preferences for my project. But I get
AndroidAuthSession cannot be allowed for type
for this ad
private DropboxAPI<AndroidAuthSession> mDBApi;
a mistake and I donโt know why. These are my projects imported automatically using cmd + shift + O command:
import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ListView; import com.dropbox.client2.DropboxAPI; import com.dropbox.client2.session.Session.AccessType;
What am I missing?
EDIT: my libraries:

source share