To ensure you have the Analytics setup with your Licensing project you simply need to remember two basic settings:
1 Add the calls to your code:
Ensure NSA it is set to enabled - <NSAEnabled>1</NSAEnabled>
2 Ensure your privacy blocking is set to "off": (setting this to off allows the IP address to get resolved).
i.e. Call this after NalpLibOpen, this only needs to be set once, as the value is stored locally, or just call it everytime your app starts:
NSASetPrivacy((short)0);
Possible values :
1 Add the calls to your code:
Ensure NSA it is set to enabled - <NSAEnabled>1</NSAEnabled>
2 Ensure your privacy blocking is set to "off": (setting this to off allows the IP address to get resolved).
i.e. Call this after NalpLibOpen, this only needs to be set once, as the value is stored locally, or just call it everytime your app starts:
NSASetPrivacy((short)0);
Possible values :
public enum PrivacyValues: short
{
OFF = 0,
ON = 1,
NOT_SET = 2
}
{
OFF = 0,
ON = 1,
NOT_SET = 2
}