refactor: migrate to Firebase KTX in the main modules (#836)

This commit is contained in:
Andre K 2024-02-08 16:45:28 -03:00 committed by GitHub
parent fa48888c3a
commit 01360dc557
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 43 additions and 147 deletions

View file

@ -0,0 +1,36 @@
package com.geeksville.mesh.analytics
/**
* Created by kevinh on 12/24/14.
*/
interface AnalyticsProvider {
// Turn analytics logging on/off
fun setEnabled(on: Boolean)
/**
* Store an event
*/
fun track(event: String, vararg properties: DataPair)
/**
* Only track this event if using a cheap provider (like google)
*/
fun trackLowValue(event: String, vararg properties: DataPair)
fun endSession()
fun startSession()
/**
* Set persistent ID info about this user, as a key value pair
*/
fun setUserInfo(vararg p: DataPair)
/**
* Increment some sort of analytics counter
*/
fun increment(name: String, amount: Double = 1.0)
fun sendScreenView(name: String)
fun endScreenView()
}