Back to project page dropbox-android-sync-sdk-mirror.
The source code is released under:
Apache License
If you think the Android project dropbox-android-sync-sdk-mirror listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dropbox.examples.notes; /*w w w . ja v a 2 s.c o m*/ import android.content.Context; import com.dropbox.sync.android.DbxAccountManager; public final class NotesAppConfig { private NotesAppConfig() {} public static final String appKey = "t3ow4tvu36zlh5s"; public static final String appSecret = "w4nmqlk5ul1uiw8"; public static DbxAccountManager getAccountManager(Context context) { return DbxAccountManager.getInstance(context.getApplicationContext(), appKey, appSecret); } }