Store session data in a secure way (#98)

* Replace SessionData DataStore with an encrypted SQLite DB.

---------

Co-authored-by: Benoit Marty <benoit@matrix.org>
This commit is contained in:
Jorge Martin Espinosa
2023-03-02 16:48:54 +01:00
committed by GitHub
parent 1ec629c304
commit c20013243b
38 changed files with 600 additions and 199 deletions

View File

@@ -23,7 +23,7 @@ object Versions {
const val compileSdk = 33
const val targetSdk = 33
const val minSdk = 21
const val minSdk = 23
val javaCompileVersion = JavaVersion.VERSION_11
val javaLanguageVersion: JavaLanguageVersion = JavaLanguageVersion.of(11)
}