FIX: Scopes.app() uses incorrect file name of shared preferences.

This commit is contained in:
Oasis 2017-03-15 22:36:37 +08:00
parent 3a190fa2f5
commit 6e08d6dcbd

View File

@ -129,7 +129,7 @@ class VersionScope extends SharedPrefsBasedScopeImpl {
class AppScope extends SharedPrefsBasedScopeImpl {
AppScope(final Context context) { super(CrossProcessSharedPreferences.get(context, Scopes.KPrefsNameVersionScope)); }
AppScope(final Context context) { super(CrossProcessSharedPreferences.get(context, Scopes.KPrefsNameAppScope)); }
}
class SharedPrefsBasedScopeImpl implements Scope {