Both seem to be ways to store key value pairs. I am trying to decide what to use with my xamarin forms app. I would like the information saved to be available on connected devices. I see akavache states that iOS and UWP backs up to the cloud.
What I'm trying to do: -Save 3 settings such as play a sound when scanned, or auto login. -Save login information and login token for Web calls.
I can store all of that in NSUserDefaults (iOS) and be fine. Akavache claims that the items in the Secure blob are encrypted and synced. That sounds better for login information.
Akavache doesn't seem to support mobile 100% due to not having a place to put the shutdown method for a mobile app lifecycle.
So with the preliminaries out of the way, which is better for performing the tasks I need, the native settings store for each platform or akavache?
Maybe it is best to use both? Akavache for the login info and native settings for the settings?