Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

appmetr/appmetr-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

appmetr-csharp

Client-to-server appmetr event analytics library implemented on csharp

How to use it?

Create appMetr instance:

var appMetr = new AppMetr(Url, Deploy, mobUuid, filePath);

Start it:

appMetr.Start();

Track some actions:

appMetr.Track(new TrackEvent("platform"));

Stop it:

appMetr.Stop();

To enable logging you should set it up:

LogUtils.CustomLog = myLog;