Package-level declarations

Types

Link copied to clipboard
interface RoomContainer

The RoomContainer interface provides access to various databases used in the application.

Link copied to clipboard
class RoomContainerImpl(context: Context, scope: CoroutineScope) : RoomContainer

The RoomContainerImpl class implements the RoomContainer interface and provides instances of different databases.

Link copied to clipboard
abstract class SvkRoomDatabase : RoomDatabase

SvkRoomDatabase is the main database class for the Svk application. It extends RoomDatabase and defines entities and their corresponding Data Access Objects (DAOs).

Properties

Link copied to clipboard

Functions

Link copied to clipboard

Retrieves an encrypted preference using the specified key.

Link copied to clipboard

Removes an encrypted preference associated with the specified key.

Link copied to clipboard
fun saveEncryptedPreference(key: String, preference: String)

Saves an encrypted preference using the specified key and preference.