Xamarin FollowAnalytics SDK versions
The current versions of the FollowAnalytics SDK for Xamarin are based on the native SDK. The versions of these native SDKs are the following:
Integration
The FollowAnalytics SDK Xamarin component provides full bindings to the FollowAnalytics SDK for use in Xamarin Studio. With this component, Xamarin developers can target both iOS and Android devices with access to the full scope of the FollowAnalytics SDK, all while remaining in the C#/.NET ecosystem.
This document will cover app setup and the component installation process, as well as basic integration steps for iOS and Android.
For more information, please read the iOS and Android FollowAnalytics SDK documentations.
Prerequisites and minimal setup
In this section, we explain how to get started with FollowAnalytics SDK for Xamarin. Before you start, be sure to have all the necessary prerequisites. These include:
- Registering the application on the Platform
- Generating the API Key
Here are the minimal steps for integrating the SDK in your app:
- Installing the SDK in your app
- Initializing the SDK using your API key
- Registering for notifications and location
Once the integration is finished, we highly recommend you test the setup. You will find out how to test your setup in this section. Then, you can start tagging events and saving attributes in your app.
Installation
Download the FollowAnalytics SDK from the developer portal.
iOS
To install the iOS part of the SDK, follow these steps:
- Right Click on project References.
- Choose the
.Net Assembly
tab. - Go to
Browse...
- Add
FollowAnalytics.iOS.dll
to your iOS Xamarin project References.
Android
To install the Android part of the SDK, add FollowAnalytics.Android.dll
to your Android Xamarin project References.
Initialize with your API keys
Be sure to have your API key
Be sure to have your API key for this step of the configuration. You can retrieve you app's API key from the administration section of the FollowAnalytics platform (see here)
iOS
- In your
AppDelegate.cs
add at the top:
using FollowAnalyticsSDK;
- In the method
FinishedLaunching
, right after theloadApplication
, add:
try
{
bool isVerbose = false;
#if DEBUG
isVerbose = true;
#endif
FollowAnalytics.Configuration configuration = new FollowAnalytics.Configuration((obj) =>
{
obj.apiKey = "YOUR_API_KEY";
obj.isVerbose = isVerbose;
obj.archiveInAppMessages = true/false; (optional)
obj.archivePushMessages = true/false; (optional)
obj.apiMode = FollowAnalytics.APIMode.Prod/FollowAnalytics.APIMode.Dev; (optional)
obj.isDataWalletEnabled = true/false; (optional)
obj.appDelegateSwizzle = true/false; (optional)
obj.crashReportingEnabled = true/false; (optional)
obj.env = ""; (optional)
obj.envProtocol = "https"; (optional)
obj.onDataWalletPolicyChange = delegate () (optional)
{
// Something TO DO
};
});
FollowAnalytics.iOS.Init(configuration, launchOptions);
}
catch (System.Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex);
return false;
}
Android
Google Play Service version
The SDK requires version 8.4.0 or higher of the google-play-service
dependency. Install or update it from the Android Extras section using the Android SDK manager (run android
).
- To declare your Android API key, in your manifest, add the following line within the
application
tag:
<application>
[...]
<meta-data android:name="FAID" android:value="YOUR_API_KEY"/>
[...]
</application>
Custom Configuration
Notification channel for Android 8.0 (Oreo)
Since Google has refactored of its "Notification system" for Android 8.0 ("Oreo"), (details here) FollowAnalytics SDK uses default_notification_fa
as an id for id for the NotificationChannel
object.
In order to customize the behavior of FollowAnalytics SDK, it is possible to change the default configuration.
You can customize Opt-Out analytics and Datawallet.
In order to achieve this, create a class that extends to FollowAnalytics.Configuration
and override only the methods that are necessary to change.
using System;
using Android.App;
namespace FollowAnalyticsSDK.Android.Sample
{
public class MyConfiguration : FollowAnalytics.Configuration
{
public override bool GetOptInAnalyticsDefault()
{
return true/false;
}
public override bool IsDataWalletEnabled()
{
return true/false;
}
public override string GetDefaultPolicyFilePath()
{
return "YOUR_DEFAULT_POLICY_PATH";
}
public override void OnDataWalletPolicyChanged()
{
Application.Context.StartActivity(typeof(PolicyActivity));
}
}
}
Finally, add a meta-data tag under the application tag to your android manifest. The value of android:name
must be identical as com.followanalytics.configuration
and the value of android:value
is the path of the configuration class:
<application>
[...]
<meta-data
android:name="com.followanalytics.configuration"
android:value="the_full_path_of_your_configuration_class"/>
[...]
</application>
For instance:
<meta-data
android:name="com.followanalytics.configuration"
android:value="com.followapps.android.sdkdemo.Configuration"
/>
Now, FollowAnalytics SDK will start by default with the value associated to the methods overridden in the customized configuration class.
- In the file of your
Application
class, add, at the top:
using FollowAnalyticsSDK;
- In the same file, in the
onCreate
method, add:
FollowAnalytics.Android.Init(this);
Necessary project capabilities
iOS
If your app code is already registered to send push notifications, skip this step. Otherwise, add a call to registerForPush
following the initialization line you added previously:
FollowAnalytics.RequestNotificationCenterDefaultAuthorisation();
Android
Build in release mode
The application must be built in release mode in order to receive push notifications
The FollowAnalytics SDK supports push notifications based on Firebase Cloud Messaging. In order to make it work:
-
Add the required packages to your project
Xamarin.Firebase.Common Xamarin.Firebase.Iid Xamarin.Firebase.Messaging
-
Add the FCM Receiver to your manifest
<receiver android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver" android:exported="false" /> <receiver android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND"> <intent-filter> <action android:name="com.google.android.c2dm.intent.RECEIVE" /> <action android:name="com.google.android.c2dm.intent.REGISTRATION" /> <category android:name="${applicationId}" /> </intent-filter> </receiver>
-
Add the
MyFirebaseIIDService.cs
file :using System; using Android.App; using Firebase.Iid; using Android.Util; namespace YOUR_NAME_SPACE { [Service] [IntentFilter(new[] { "com.google.firebase.INSTANCE_ID_EVENT" })] public class MyFirebaseIIDService : FirebaseInstanceIdService { const string TAG = "MyFirebaseIIDService"; public override void OnTokenRefresh() { var refreshedToken = FirebaseInstanceId.Instance.Token; Log.Debug(TAG, "Refreshed token: " + refreshedToken); SendRegistrationToServer(refreshedToken); } void SendRegistrationToServer(string token) { FollowAnalytics.Android.SetPushToken(token); // Implement other processes } } }
-
Add the
MyFirebaseMessagingService.cs
file :using System; using Android.App; using Android.Content; using Android.Media; using Android.Util; using Firebase.Messaging; namespace FollowAnalyticsSDK.Android.Sample { [Service] [IntentFilter(new[] { "com.google.firebase.MESSAGING_EVENT" })] public class MyFirebaseMessagingService : FirebaseMessagingService { const string TAG = "MyFirebaseMsgService"; public override void OnMessageReceived(RemoteMessage message) { FollowAnalytics.Android.ProcessFirebaseMessage(Application.Context, message); } } }
Define the URL scheme
To allow users to retrieve their device ID for campaign testing and tagging plan debugging, you need to define a URL scheme in your iOS and Android projects.
iOS
-
Make sure that the Rivets component is installed. If not, install with NuGet.
-
Open your app's Info.plist file, and under the Advanced tab, in the URL Types section, add a new URL Type like:
-
Make sure that the bundle ID of your app appears in the URL Schemes field as shown in the screenshot (where
com.follow-apps.followme.inHouse
needs to be replaced).
Android
- Edit your AndroidManifest.xml file to add this:
<activity android:name="com.followapps.android.internal.activities.DeviceIdActivity" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="followanalytics.com"
android:path="/deviceId"
android:scheme="%YOUR_APP_PACKAGE_NAME%" />
</intent-filter>
</activity>
- Replace
%YOUR_APP_PACKAGE_NAME%
with the Android package name of your app.
Analytics
Events vs Attributes
The FollowAnalytics SDK allows you to tag both events and attributes. In this section, we explain how to utilize both of them in your app and benefit from analytics capabilities. If you are unsure about the difference, you may refer to the corresponding FAQ entry.
Data sent in debug mode will not appear on dashboards
When your application runs in DEBUG
mode or in a simulator, the data is automatically sent as development logs, and is therefore not processed to be shown on the main UI page. DEBUG
logs can be checked using the method given in the FAQ section.
See related entry in FAQ for more information on debug & release modes.
App tags
The SDK allows you to implement log events and errors in your code. The following methods that you can call with the SDK are the following:
FollowAnalytics.LogEvent(string eventName);
FollowAnalytics.LogEvent(string eventName, string details);
FollowAnalytics.LogEvent(string eventName, IDictionary<string, string> details);
FollowAnalytics.LogError(string eventName);
FollowAnalytics.LogError(string eventName, string details);
FollowAnalytics.LogError(string eventName, IDictionary<string, string> details);
Logging best practices
To ensure your tags are relevant and will end up empowering your team through FollowAnalytics, please read the Logging best practices entry in the FAQ section.
Use the eventName as the unique identifier of your tag. Use the details section to add specific details or context. Events can be renamed later: the name that you give to your event here can be overridden in the FollowAnalytics UI.
The details field can either be a String or a Hash, so that you can associated multiple key-values for additional context.
For instance, logging the appearance of a view could be done the following way:
FollowAnalytics.LogEvent("Product view", "Product reference");
var options = new Dictionary<string, string>();
options["product_id"] = "ABCD123";
options["product_category"] = "Jeans";
FollowAnalytics.LogEvent("Add product to cart", options);
User ID and attributes
You don't need a user ID to set attributes
Attributes are tied to the device when no user ID is provided. If a user ID is set, a profile is created and can be shared across applications.
In both cases, attributes can be used in segments and campaigns to target users.
User ID
If users can sign in somewhere in your application, you can specify their identifier to the SDK. This way, you will be able to relate crashes to specific users, link your users between FollowAnalytics and your CRM, and more.
It is recommended to use a cryptographic number that uniquely ties your customer to you.
To register the user identifier, use:
FollowAnalytics.SetUserId("1547521wed2155w57e02dwe574");
If you want to remove the user identifier (in case of a sign out for instance) use the following method:
FollowAnalytics.SetUserId(null);
At any moment, you can retrieve the current user ID this way:
string user_id = FollowAnalytics.GetUserId(); // returns null if there is no user id
Predefined attributes
The SDK allows to set values for both custom and predefined attributes.
For predefined attributes, the SDK has the following properties:
FollowAnalytics.UserAttributes.SetFirstName("Peter");
FollowAnalytics.UserAttributes.SetLastName("Jackson");
FollowAnalytics.UserAttributes.SetCity("San Francisco");
FollowAnalytics.UserAttributes.SetRegion("California");
FollowAnalytics.UserAttributes.SetCountry("USA");
FollowAnalytics.UserAttributes.SetGender(FollowAnalytics.Gender.Male);
FollowAnalytics.UserAttributes.SetEmail("mail@mail.com");
FollowAnalytics.UserAttributes.SetDateOfBirth(DateTime.Today);
FollowAnalytics.UserAttributes.SetProfilePictureUrl("https://picture/picture");
They are "predefined" in the sense that they will be attached to default fields on your user profiles.
To unset an attribute, set it to null
. For instance :
FollowAnalytics.UserAttributes.SetFirstName(null);
Custom attributes
Double check your custom attribute types
When a value for an unknown attribute is received by the server, the attribute is declared with the type of that first value.
If you change the type of an attribute in the SDK, values might be refused server-side. Please ensure the types match by visiting the profile data section of the product.
Set a custom attribute
To set your custom attributes, you can use methods that are adapted for each type:
FollowAnalytics.UserAttributes.SetNumber("key_number", 1);
FollowAnalytics.UserAttributes.SetNumber("key_double", 32.428);
FollowAnalytics.UserAttributes.SetDate("key_date", DateTime.Today);
FollowAnalytics.UserAttributes.SetDateTime("key_dateTime", Date.Now);
FollowAnalytics.UserAttributes.SetString("key_string", "string");
FollowAnalytics.UserAttributes.SetBoolean("key_bool", true);
For example, to set the user's job:
FollowAnalytics.UserAttributes.SetString("job", "Taxi driver");
Delete a custom attribute value
You can clear the value of an attribute using its key. For instance, to delete the user's job:
FollowAnalytics.UserAttributes.Clear("job");
Set of Attributes
You can add or remove an item to or from a set of attributes.
To add an item:
FAFollowApps.UserAttributes.AddToSet("fruits", "apple");
To add several items:
FAFollowApps.UserAttributes.AddToSet("fruits", "orange", "banana");
To remove an item:
FAFollowApps.UserAttributes.RemoveFromSet("fruits", "orange");
And to clear a set:
FAFollowApps.UserAttributes.ClearSet("fruits");
Opt-Out Analytics
What is Opt-out analytics?
The SDK can be configured to no longer track user information. This is what we call to opt out of analytics.
Once opted-out, no new data is collected, nor is it stored in the app. New session are not generated at launch and nothing is sent back to the server. This data includes the following:
- tagged elements such as events, errors
- new user identification and attributes
- crash reports
When a user is opted-out of analytics, campaigns will continue to work with the following limitations:
- No Contextual campaigns - as they depend on log tracking
- No Transactional campaigns - as they depend on the user ID
- No Dynamic campaigns - as they depend on users entering a segment
- Campaigns filters will depend on old data (before the user opted-out)
All data collected before the user has opted-out is preserved within FollowAnalytics servers. This means that a user having opted-out will still receive campaigns based on data acquired before opting out (previous campaigns, existing segments, etc). The opt-in state is persisted between app starts (unless storage of the app is emptied).
To inspect and set the opt-out state, call the following methods on FollowAnalytics class:
FollowAnalytics.SetOptInAnalytics(bool optInAnalytics);
FollowAnalytics.GetOptInAnalytics();
Please see additional doc in the new FollowAnalytics and FollowAnalyticsConfiguration interface for more details.
Additionally, if the opt-in by default policy doesn't suit your use case you can change it by setting the optInAnalyticsDefault
on FollowAnalyticsConfiguration.
bool optInAnalyticsDefault;
GDPR
You can record when the user expresses his demand to access or delete his personal data by calling one of the following methods:
FollowAnalytics.GDPR.RequestToAccessMyData();
FollowAnalytics.GDPR.RequestToAccessMyData();
The SDK will record all requests and send them to FollowAnalytics servers as soon as network conditions allow it. The SDK remembers pending requests between app restarts.
Campaigns
Deep-linking: URL, Parameters
Campaigns created through FollowAnalytics allow to deep link to content in your app. You can either use an App Link, or use key-value parameters that are forwarded to your code.
App Links
Version 4.1.0 of the SDK introduced the possibility to use direct App Links like twitter://messages
, which will send you to the corresponding screen inside the Twitter application.
You're able to access the functionality by enabling the Deep Linking switch in our UI, when creating a campaign. There you'll find the field App Link that expects you to enter these types of URL schemas. It can either be an URL schema to an external application or for your own application.
Deep-linking parameters
In FollowAnalytics campaigns, you can specify deep-linking parameters, e.g. in your push messages or for in-app button actions.
These parameters are given to the developer's code by the SDK. It is then up to the developer to implement the deep-linking in the app (specific path of screens, format of the arguments, etc.).
iOS
In order to receive the custom parameters sent within a Push Notification or an In App message payload, you'll need to enable the swizzling of your appDelegate
Your Configuration object must contain the obj.appDelegateSwizzle
attribute with its value as true
:
FollowAnalytics.Configuration configuration = new FollowAnalytics.Configuration((obj) =>
{
...
obj.appDelegateSwizzle = true;
});
Add the following method inside the class:
public void FollowAppsShouldHandleParameters(NSDictionary customParameters, NSString actionIdentifier, NSString actionTitle, Action completionHandler) {
//For example
if (customParameters["my_key"] != null) {
// do what you need to do.
}
if (completionHandler != null) {
completionHandler();
}
}
Android
In FollowAnalytics campaigns through our platform, you can specify deep-linking parameters, e.g. in your push messages or for in-app button actions.
These parameters are given to the developer's code by the SDK. It is then up to the developer to implement the deep-linking in the app (specific path of screens, format of the arguments, etc.).
To obtain these parameters, you can extend the Com.Followanalytics.FollowAnalytics.DefaultMessageHandler
class, like in the following example:
//import the namespace
using System.Collections.Generic;
using Android.Content;
....
public class CustomMessageHandler : Com.Followanalytics.FollowAnalytics.DefaultMessageHandler
{
public override void OnInAppMessageClicked(Context p0, string p1, IDictionary<string, string> p2){
base.OnInAppMessageClicked(p0,p1,p2);
//Write code to process information
}
public override void OnPushMessageClicked(Context p0, string p1, IDictionary<string, string> p2){
base.OnPushMessageClicked(p0, p1, p2);
//Write code to process information
}
public override void OnPushMessageClicked(Context p0, IDictionary<string, string> p1){
base.OnPushMessageClicked(p0, p1);
//Write code to process information
}
}
If you chose to define a custom MessageHandler
, you must declare it in your application on your AndroidManifest file as meta-data.
In order to do this, you need to retrieve the value associated to the name of the Android Callable Wrapper for your custom implementation.
The easiest way to get the value at runtime, is to implement the following code:
//import the namespace in your activity
using Android.Util;
//implement this code in one of the lifecycle method of your activity
Log.Debug("FA","The CustomMessageHandler name is : " + Java.Lang.Class.FromType(typeof(<ABSOLUTE_PATH_OF_THE_CLASS>.<NAME_OF_THE_CUSTOM_MESSAGE_HANDLER_CLASS>)).Name);
For instance:
Log.Debug("FA","The CustomMessageHandler name is : " + Java.Lang.Class.FromType(typeof(FollowAnalyticsSDK.Android.Sample.CustomMessageHandler)).Name);
This will output a similar result, at runtime, in the Logcat console:
FA D The CustomMessageHandler name is : md5dc1df9376dd70f35e4f0f156de0b2eea.CustomMessageHandler
Nothing appears in Logcat console
The problem can be due to the wrong absolute path or the activity that has not executed the line of code (wrong place). Consider to recheck your code.
Finally, copy the value and paste it to the attribute android:value
in your <meta-data> tag.
For instance:
<application>
[...]
<meta-data android:name="com.followanalytics.deeplinking.handler" android:value="md5dc1df9376dd70f35e4f0f156de0b2eea.CustomMessageHandler"/>
[...]
</application>
Don't change the attribute android:name
The content associated to the attribute android:name
must not be changed !
It is used by the FollowAnalytics SDK in order to find the customized class.
Consider to test those changes before removing the code which retrieves the value associated to the name of the Android Callable Wrapper.
Custom handling of rich campaigns
What are Rich Campaigns?
Among the layouts available on the FollowAnalytics platform, you can choose "Custom web page" and "templates". These layouts are called Rich Campaigns. Our SDK provides a default display for Rich campaigns, but you can replace them with your one of your own.
Rich campaigns can be handled directly by the application code, instead of being showed automatically by the SDK. The behavior is defined when creating the campaign, using the "automatically display content" switch.
iOS
For geofencing campaigns you need to enable geofence
FollowAnalytics.EnableGeoffencing();
Pausing in-app campaigns
What is pausing and resuming an in-app campaign?
Pausing campaigns are used to prevent in-app from being displayed on certain screens and views of your app. You may pause a screen of the app when it is too important, or is part of a process that is too important to be interrupted by an in-app (i.e a payment screen in the process of the user making a purchase).
When the screen is safe to display an in-app, you resume in-app campaigns. Any campaign supposed to be displayed when the mechanism is paused, is stacked and shown as soon as the mechanism is resumed. This way you can send send in-app campaigns without impacting the user experience.
To prevent the SDK from displaying rich campaigns use the following method:
FollowAnalytics.InApp.PauseCampaignDisplay();
To resume the SDK from displaying rich campaigns use the following method:
FollowAnalytics.InApp.ResumeCampaignDisplay();
Tip: Use the lifecycle concepts from android to control campaigns.
To prevent the SDK from displaying the campaigns on a given activity, call the Pause method before the creation of an activity in order to block the campaigns.
Resume the campaigns by calling the Resume method on any other place of the application which will activate them.
Data Wallet
What is the Data Wallet?
The Data Wallet is a consent management and data declaration tool that helps you on your way to in compliance with GDPR.
Your Data Wallet puts together what is called a policy. This policy which is created from the FollowAnalytics platform, is what brings together the legal texts, data categories, recipients and purposes you have determined in your Data Wallet. There could only be one policy at a time. Every time it is updated on the platform, the policy downloaded by the SDK.
All the data in the SDK will be in a JSON format and the developer will need to reorganize them in order to display them. The use of this feature is one of the most advanced for FollowAnalytics. We recommend that the developer working with the Data Wallet should be familiar with the FollowAnalytics and that most features were already installed.
If you want to use Data Wallet, the very first step is to enable it in your app at startup. This is done by accessing the FollowAnalyticsConfiguration
object which contains the property isDataWalletEnabled
. Set this property to true
.
Policy download and consent
Now that the Data Wallet is enabled, the SDK will automatically download the new policies as they are published. In order to deal with the currently known policy, call the API with the following methods:
DataWallet.Policy policy = FollowAnalytics.DataWallet.GetPolicy(); // gets the current policy
BOOL policyIsRead = FollowAnalytics.DataWallet.isRead; // true if the current policy is considered accepted
FollowAnalytics.DataWallet.SetIsRead(true); // informs the SDK that the user has accepted the current policy
There could only be one active policy at a time. When a new policy becomes available online, the SDK will call on the main thread onDataWalletPolicyChange
, callback set on the FollowAnalyticsConfiguration
. To set this up before starting the SDK, include the following code:
iOS
FollowAnalytics.Configuration configuration = new FollowAnalytics.Configuration((obj) =>
{
...
obj.isDataWalletEnabled = true/false;
obj.onDataWalletPolicyChange = delegate () (optional)
{
};
});
Android
public class MyConfiguration : FollowAnalytics.Configuration
{
...
public override bool IsDataWalletEnabled()
{
return true;
}
public override void OnDataWalletPolicyChanged()
{
Application.Context.StartActivity(typeof(PolicyActivity));
}
}
At each major policy update, there needs to be consent from the client. When the user accepts a policy call [FollowAnalytics.dataWallet setIsRead:true]
to mark the current policy as "read". In other words:
- If
FollowAnalytics.DataWallet.isRead
isfalse
, the current policy major version has yet to be accepted by the user. - If the current policy is accepted,
FollowAnalytics.DataWallet.isRead
becomestrue
.
The SDK records the major version of the current policy for future reference. By default, if no other configuration is present, the SDK will return a default policy with version 0.0. This policy is always read. You should check for version 0.0 and handle it appropriately.
Custom default policy
If you want to provide a custom default policy for your users, download the policy JSON file from the back office and add it to your app, then modify the configuration to use it as follows:
iOS
FollowAnalytics.Configuration configuration = new FollowAnalytics.Configuration((obj) =>
{
obj.dataWalletDefaultPolicyPath = "YOUR_POLICY_PATH";
});
Android
public class MyConfiguration : FollowAnalytics.Configuration
{
...
public override string GetDefaultPolicyFilePath()
{
return "YOUR_POLICY_PATH";
}
}