. . .

Setting up a Xamarin app with ApiOmat

Within this tutorial we will take advantage of Xamarin's ability to share code between different projects and platforms. Therefore you will create a Xamarin. Forms app that uses a Portable Class Library (PCL) which contains the generated ApiOmat Xamarin SDK.

Using Xamarin Studio

Click New Solution and chose Multiplatform -> Apps -> Form App

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.24.10.png

In the next step select the desired target platforms and make sure the option Use Portable Class Library is selected. By clicking Next and Create afterwards, your solution will be created immediately.

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.24.47.png

Now, depending on what target platforms you've selected, a new solution with up to three new projects is created:

  1. XamarinApp

  2. XamarinApp.Droid

  3. XamarinApp.iOS

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.25.40.png

The XamarinApp project is the PCL, where you will add the generated SDK. But before you do so, you need to configure it.

You cannot add Windows Phone 8.0 as target of the PCL, because the System.Linq.Parallel namespace, which is used by the SDK, is not supported on that platform.

This means you can't use PCL Profile 259. Instead we recommend to use PCL Profile 111. If your IDE doesn't show the profile number in the properties, you can open the .csproj file of the PCL project and see (and change) the profile there.

Add the required dependencies that are listed below:

If you are targeting Windows Phone 8 or later and no previously added package depended on it, then you also need to add Microsoft.Net.Http Version:2.2.29! Unfortunately, due to a problem with this package, GZip-Compression for outgoing and incoming requests won't be available in this case.

If you're not targeting Windows Phone 8 or later, please make sure that they're not selected as target frameworks in your project's build options.

Newer versions of the packages probably work as well, but we ran our tests with the versions mentioned above and thus only support them.

To add those packages, right click on Packages of the PCL project (XamarinApp in this example) and chose Add Packages...

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.26.37.png

Within the search bar you can search for the required packages. By adding version: x.x.x after the package name you can ensure that only the specific version will be listed. For each package activate the checkbox in front of the package's name. After adding all packages, simply click the Add Package button in the right corner at the bottom and all previously selected packages will be installed in a row. You will also have to accept the license agreement of some selected packages.

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.28.16.png

After adding all listed packages, your referenced packages should look like shown in the figure below:

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.34.07.png

Now you are ready to add the generated SDK. Right click on your project and choose Add existing folder... Choose the Com folder of your extracted Xamarin SDK, check Include All within the appearing dialogue and confirm by clicking OK. Afterwards, chose Copy the files to directory and confirm again by clicking the OK button.

Now, to make sure everything is fine, choose Project -> Build XamarinApp.

Please notice that you must also add some of the listed packages to your platform projects as well:

  • Portable.BouncyCastle (only needed when using the old C# SDK and not the new C# SQLite SDK)

  • sqlite-net-pcl

  • Xam.Plugin.Connectivity

  • Newtonsoft.Json

For the versions you have to use see the list above.

On some Windows targets (e.g. Windows 8 store app or Windows Phone 8.1 app), the SQLite-net PCL also requires to reference the Microsoft Visual C++ Runtime Package for Windows (a System.TypeInitializationException gets thrown from SQlitePCL.raw if required and missing).
When building your target project, the Xam.Plugin. Connectivity may complain about a duplicate "Plugin.Connectivity.pdb" on your build-path. You will have to delete the file either from the folder [MyProjectFolder]/packages/Xam.Plugin.Connectivity.[Version]/lib/portable-[targets] or from MyProjectFolder/packages/Xam.Plugin.Connectivity.[Version]/lib/[target] (whereas "MyProjectFolder" is the main folder for your solution, "Version" the installed version number of the package, "targets" the different supported targets for this library, as of writing "net45+wp80+wp81+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10" and "target" your specific target for the project, e.g. win8).

Now your PCL project should be built without any errors and we can add the project as a reference to the other project(s). Therefore, right click on the other project's References (those that aren't the PCL project) and choose Edit References...

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.41.32.png

When choosing the tab Projects you can now select your PCL project.

images/download/attachments/61478895/Bildschirmfoto-2016-08-31-um-10.45.01.png

Because the ApiOmat C# / Xamarin SDK uses an SQLite database for saving requests when no connection to the server is available and for generally caching data, a few final steps are necessary to finish the setup.

According to Xamarin's documentation you have to define an interface, containing a method, that provides an existing SQLiteConnection in your PCL project. Afterwards you have to implement this interface in each of your platform specific projects, as shown below.

Content of ISQLite.cs (PCL project)

C#
public interface ISQLite {
SQLiteConnection GetConnection();
}

Content of SQLite_iOS (iOS project)

C#
[assembly: Dependency (typeof (SQLite_iOS))]
// ...
public class SQLite_iOS : ISQLite {
public SQLite_iOS () {}
public SQLite.SQLiteConnection GetConnection ()
{
var sqliteFilename = "TodoSQLite.db3";
string documentsPath = Environment.GetFolderPath (Environment.SpecialFolder.Personal); // Documents folder
string libraryPath = Path.Combine (documentsPath, "..", "Library"); // Library folder
var path = Path.Combine(libraryPath, sqliteFilename);
// Create the connection
var conn = new SQLite.SQLiteConnection(path);
// Return the database connection
return conn;
}}

Content of SQLite_Android (Android project)

C#
[assembly: Dependency (typeof (SQLite_Android))]
// ...
public class SQLite_Android : ISQLite {
public SQLite_Android () {}
public SQLite.SQLiteConnection GetConnection () {
var sqliteFilename = "TodoSQLite.db3";
string documentsPath = System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal); // Documents folder
var path = Path.Combine(documentsPath, sqliteFilename);
// Create the connection
var conn = new SQLite.SQLiteConnection(path);
// Return the database connection
return conn;
}}

After adding those files you can initialize the Datastore with the SQLiteConnection in your Xamarin.Forms project, for example in the class that inherits from the Application class.

C#
var conn = DependencyService.Get<ISQLite> ().GetConnection();
Datastore.InitOfflineHandler( conn );

From now on, all methods provided by the SDK, including accessing, modifying and saving your models are available within your platform specific project(s) as well as the PCL, which is also going to host your platform independent Xamarin.Forms code. Also have a look at our C# SDK documentation, where the usage of the C# / Xamarin SDK is described in detail.