diff --git a/android/app/build.gradle b/android/app/build.gradle index b3cc34eef0..8ab608edc5 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -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' diff --git a/android/app/src/main/java/app/organicmaps/util/SharedPropertiesUtils.java b/android/app/src/main/java/app/organicmaps/util/SharedPropertiesUtils.java index 5992521239..36017624db 100644 --- a/android/app/src/main/java/app/organicmaps/util/SharedPropertiesUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/SharedPropertiesUtils.java @@ -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;