Last active
January 1, 2019 09:56
-
-
Save ibrahimsn98/b959c5440b629de83c38fcf0d8e6ff9b to your computer and use it in GitHub Desktop.
Android-Live-Shared-Preferences-Gist8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
liveSharedPreferences.listenMultiple(listOf("bool1", "bool2", "bool3"), false).observe(this, Observer<Pair<String, Boolean>> { value -> | |
Log.d(TAG, "key: ${value!!.first} value: ${value.second}") | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment