[android] Fix deprecated androidx.preference.PreferenceManager

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2023-11-25 17:16:39 +02:00
parent 5f36ae2abe
commit 8a74a414d2
2 changed files with 2 additions and 1 deletions

View file

@ -120,6 +120,7 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.work:work-runtime:2.8.1'
implementation 'androidx.lifecycle:lifecycle-process:2.6.2'
implementation 'androidx.preference:preference:1.2.1'
implementation 'com.google.android.material:material:1.10.0'
implementation 'com.github.devnullorthrow:MPAndroidChart:3.2.0-alpha'
implementation 'net.jcip:jcip-annotations:1.0'

View file

@ -4,9 +4,9 @@ import static app.organicmaps.util.Config.KEY_PREF_STATISTICS;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import androidx.annotation.NonNull;
import androidx.preference.PreferenceManager;
import app.organicmaps.MwmApplication;
import app.organicmaps.R;