I'm making app with using Xamarin.forms.
I want to store UUID in phone which is generated from server. And it must not be deleted even when app's uninstalled. This is very common way on iOS. (saving in Keychain)
So, I add Xamarin.Auth and wrote code like this. https://developer.xamarin.com/recipes/cross-platform/xamarin-forms/general/store-credentials/
It works great on iOS. Value is saved after app's uninstalled.
But on Android. It's gone when app's uninstalled! What the heck is this?
And I saw this link. Android: Save file permanently (even after clear data / uninstall)
Is it Xamarin.Android's bug or it is regular behavior?
Thanks.