All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources.src.EncryptedSharedPreferences Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package ${package};

import android.content.Context;
import android.content.SharedPreferences;
import java.util.Set;

import oak.ObscuredSharedPreferences;

/**
 * Generated from archetypezz
 */

public final class EncryptedSharedPreferences extends ObscuredSharedPreferences{

    public EncryptedSharedPreferences(Context context, SharedPreferences delegate) {
        super(context, delegate);
    }

    @Override
    protected char[] getSpecialCode() {
        return "y0urPa$$w0rdH3r3".toCharArray();
    }

    @Override
    public Set getStringSet(String s, Set strings) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy