Preferences

interface Preferences

Inheritors

Functions

Link copied to clipboard
abstract fun clear()
Link copied to clipboard
abstract fun getBoolean(key: String, defaultValue: Boolean = false): Boolean
Link copied to clipboard
abstract fun getInt(key: String, defaultValue: Int = 0): Int
Link copied to clipboard
abstract fun getString(key: String, defaultValue: String? = null): String?
Link copied to clipboard
abstract fun remove(key: String)
Link copied to clipboard
abstract fun setBoolean(key: String, value: Boolean)
Link copied to clipboard
abstract fun setInt(key: String, value: Int)
Link copied to clipboard
abstract fun setString(key: String, value: String)