Integrate Dropbox in android app, but without login popup
I want to use the dropbox in my application.I developed a sample application for upload and download files and it ask for authentication. But I don't want to open login popup. Is it possible access the dropbox by other users using default account(single account) login details? So any user can use dropbox directly without login popup. How to set access user access token pair manually. AppKeyPair appKeys = new AppKeyPair(APP_KEY, APP_SECRET); AndroidAuthSession session = new AndroidAuthSession(appKeys, ACCESS_TYPE); if (mDBApi == null) { mDBApi = new DropboxAPI<AndroidAuthSession>(session); //