We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad6f03 commit c9cf94dCopy full SHA for c9cf94d
firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/impl/SignInStorage.java
@@ -30,6 +30,9 @@ class SignInStorage {
30
this.signInSharedPreferences =
31
new Lazy(
32
() ->
33
+ // TODO(lkellogg): This constructs a SharedPreferences object, which touches disk
34
+ // and therefore should be run on a @Background executor. This could ideally be
35
+ // done by a new shared component.
36
applicationContext.getSharedPreferences(
37
SIGNIN_PREFERENCES_NAME, Context.MODE_PRIVATE));
38
}
0 commit comments