update the key for the data saver mode pref

This commit is contained in:
Bnyro 2023-01-05 18:24:59 +01:00
parent 55ea170f25
commit 9d7a12a74f
3 changed files with 23 additions and 23 deletions

View File

@ -11,23 +11,10 @@
"type": "UNIVERSAL", "type": "UNIVERSAL",
"filters": [], "filters": [],
"attributes": [], "attributes": [],
"versionCode": 23, "versionCode": 26,
"versionName": "0.8.0", "versionName": "0.10.0",
"outputFile": "app-universal-release.apk" "outputFile": "app-universal-release.apk"
}, },
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86"
}
],
"attributes": [],
"versionCode": 23,
"versionName": "0.8.0",
"outputFile": "app-x86-release.apk"
},
{ {
"type": "ONE_OF_MANY", "type": "ONE_OF_MANY",
"filters": [ "filters": [
@ -37,8 +24,8 @@
} }
], ],
"attributes": [], "attributes": [],
"versionCode": 23, "versionCode": 26,
"versionName": "0.8.0", "versionName": "0.10.0",
"outputFile": "app-arm64-v8a-release.apk" "outputFile": "app-arm64-v8a-release.apk"
}, },
{ {
@ -50,8 +37,8 @@
} }
], ],
"attributes": [], "attributes": [],
"versionCode": 23, "versionCode": 26,
"versionName": "0.8.0", "versionName": "0.10.0",
"outputFile": "app-x86_64-release.apk" "outputFile": "app-x86_64-release.apk"
}, },
{ {
@ -63,9 +50,22 @@
} }
], ],
"attributes": [], "attributes": [],
"versionCode": 23, "versionCode": 26,
"versionName": "0.8.0", "versionName": "0.10.0",
"outputFile": "app-armeabi-v7a-release.apk" "outputFile": "app-armeabi-v7a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86"
}
],
"attributes": [],
"versionCode": 26,
"versionName": "0.10.0",
"outputFile": "app-x86-release.apk"
} }
], ],
"elementType": "File" "elementType": "File"

View File

@ -117,7 +117,7 @@ object PreferenceKeys {
/** /**
* Advanced * Advanced
*/ */
const val DATA_SAVER_MODE = "data_saver_mode" const val DATA_SAVER_MODE = "data_saver_mode_key"
const val MAX_IMAGE_CACHE = "image_cache_size" const val MAX_IMAGE_CACHE = "image_cache_size"
const val RESET_SETTINGS = "reset_settings" const val RESET_SETTINGS = "reset_settings"
const val CLEAR_SEARCH_HISTORY = "clear_search_history" const val CLEAR_SEARCH_HISTORY = "clear_search_history"

View File

@ -10,7 +10,7 @@
android:entryValues="@array/dataSaverModeValues" android:entryValues="@array/dataSaverModeValues"
android:icon="@drawable/ic_data_saver" android:icon="@drawable/ic_data_saver"
android:summary="@string/data_saver_mode_summary" android:summary="@string/data_saver_mode_summary"
app:key="data_saver_mode" app:key="data_saver_mode_key"
app:title="@string/data_saver_mode" /> app:title="@string/data_saver_mode" />
<ListPreference <ListPreference