Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I save some user data locally on my Xamarin Forms app?

I have a simple Xamarin Forms app. I've now got a simple POCO object (eg. User instance or an list of the most recent tweets or orders or whatever).

How can I store this object locally to the device? Lets imagine I serialize it as JSON.

Also, how secure is this data? Is it part of Keychains, etc? Auto backed up?

cheers!

like image 975
Pure.Krome Avatar asked Jul 27 '15 14:07

Pure.Krome


People also ask

What are the disadvantages of Xamarin forms?

By far the biggest drawback of Xamarin can be its price. Xamarin itself is Free and Open-Source, but that changes when you want to use it in an enterprise setting. Although you can use any IDE to develop with Xamarin, in order to take full advantage of Xamarin's features, you'll probably want to use Visual Studio.

Is Microsoft abandoning Xamarin?

In May 2020, Microsoft announced that Xamarin. Forms, a major component of its mobile app development framework, would be deprecated in November 2021 in favour of a new . Net based product called MAUI - Multiform App User Interface.


2 Answers

You have a couple options.

  1. SQLite. This option is cross-platform and works well if you have a lot of data. You get the added bonus of transaction support and async support as well. EDIT: In the past I suggested using SQLite.Net-PCL. Due to issues involving Android 7.0 support (and an apparent sunsetting of support) I now recommend making use of the project that was originally forked from: sqlite-net
  2. Local storage. There's a great nuget that supports cross-platform storage. For more information see PCLStorage
  3. There's also Application.Current.Properties implemented in Xamarin.Forms that allow simple Key-Value pairs of data.

I think you'll have to investigate and find out which route serves your needs best.

As far as security, that depends on where you put your data on each device. Android stores app data in a secure app folder by default (not all that secure if you're rooted). iOS has several different folders for data storage based on different needs. Read more here: iOS Data Storage

like image 127
Will Decker Avatar answered Sep 19 '22 03:09

Will Decker


Another option is the Xamarin Forms settings plugin.

E.g. If you need to store a user instance, just serialize it to json when storing and deserialize it when reading.

Uses the native settings management

  • Android: SharedPreferences
  • iOS: NSUserDefaults
  • Windows Phone: IsolatedStorageSettings
  • Windows RT / UWP: ApplicationDataContainer

      public User CurrentUser   {      get      {         User user = null;         var serializedUser = CrossSettings.Current.GetValueOrDefault<string>(UserKey);         if (serializedUser != null)         {            user = JsonConvert.DeserializeObject<User>(serializedUser);         }          return user;      }      set      {         CrossSettings.Current.AddOrUpdateValue(UserKey, JsonConvert.SerializeObject(value));      }   } 

EDIT: There is a new solution for this. Just use Xamarin.Essentials.

Preferences.Set(UserKey, JsonConvert.SerializeObject(value)); var user= JsonConvert.DeserializeObject<User>(Preferences.Get(UserKey, "default_value"); 
like image 44
puko Avatar answered Sep 17 '22 03:09

puko