Remove unused room code and references

Remove set and get retain instances since bug seems fixed
Update Settings activity
Code cleanup
This commit is contained in:
Geoffroy Bonneville
2023-12-21 16:22:52 +01:00
parent ce2c548e5b
commit 2c78ee88bc
23 changed files with 67 additions and 389 deletions

View File

@@ -9,11 +9,6 @@ android {
targetSdkVersion 34
versionCode 30
versionName "1.9"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
buildTypes {
release {
@@ -55,12 +50,6 @@ dependencies {
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
// Room components
def roomVersion = "2.6.1"
implementation "androidx.room:room-runtime:$roomVersion"
annotationProcessor "androidx.room:room-compiler:$roomVersion"
testImplementation "androidx.room:room-testing:$roomVersion"
// Lifecycle components
def lifecycleVersion = '2.6.2'
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycleVersion"