Androidutility.v165 [hot] May 2026

// Example for androidutility.v165 object PrefUtils { private var prefs: SharedPreferences? = null

fun getString(key: String, defaultValue: String = ""): String { return prefs?.getString(key, defaultValue) ?: defaultValue } androidutility.v165

fun init(context: Context, name: String = "app_prefs") { prefs = context.getSharedPreferences(name, Context.MODE_PRIVATE) } // Example for androidutility