MatchaSync

A plugin library for offline data sync, provides an SDK library for both Client & Server


Project maintained by winstongubantes Hosted on GitHub Pages — Theme by mattgraham

Running Sample Project (Mobile)

When you are running the Mobile project, make sure to select “SampleMobile.Android” or the “SampleMobile.iOS” as the starting project. You might encounter issue with android project make sure your android SDK updated, for more info about android SDK update please click HERE.

If you are new to Xamarin mobile development here is a LINK to get started.

Setup

The sample project has everything setup for you except the Api Address, You will need to get the api endpoint path, Here is the link on how to get the end point LINK HERE. Then assign the endpoint to the ApiUrl property of AppConstants under the Constants folder.

  public static class AppConstants
  {
      public const string ApiUrl = "https://YOUR_API_ENDPOINT_HERE/api";
  }

That’s it, run your mobile and your are ready to go

<= Back to Table of Contents