Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private final static String DROPBOX_ACCOUNT_PREFS_NAME = "prefs";
    private final static String ACCESS_SECRET_NAME = "access_secret";
    public static String DropboxSecret;

    public static void clearKeys(Context context) {
        DropboxSecret = "";
        SharedPreferences prefs = context.getSharedPreferences(DROPBOX_ACCOUNT_PREFS_NAME, 0);
        prefs.edit().remove(ACCESS_SECRET_NAME).commit();
    }
}