For accurate analytics around devices and tracking Re-installs, it is essential to track the Advertising Identifier.
info |
Note This is not supported in iOS |
Add Ad Identifier Library
Add the below dependency in the application level build-extras.gradle file.
implementation("com.google.android.gms:play-services-ads-identifier:18.0.1")
To enable Advertising Identifier tracking use the enableAdIdTracking() method as shown below.
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.enableAdIdTracking();
Before you enable Advertising Id tracking please ensure the application is complying with the Google Play Policy regarding Advertising Id tracking. Refer to our help document for more information on the policy.
In case, you need to disable advertising-id after enabling tracking use the following method.
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.disableAdIdTracking();
info |
Note The above APIs are available only starting plugin version 7.3.3. In the older versions, Advertising Identifier tracking is enabled by default. |