###How-to
-
Download and add the library.
-
In AndroidManifest.xml add the following to application section:
<meta-data android:name="org.prflr.apikey" android:value="your_api_key"/>
-
Run somethere in startup:
PRFLR.init(context)
-
Add timers wherever you need them:
// Starts timer with name "timerName". PRFLR.begin(timerName); // Here we're doing something, which we want to measure // Stops and sends timer with additional info. PRFLR.end(timerName, info);