Last active
January 18, 2021 20:59
-
-
Save amsterdatech/d302458cc02d112d11997508dc4f8d51 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Tracker { | |
fun isAnalyticsEnabled(): Boolean | |
fun enableAnalytics(enabled: Boolean) | |
fun logLevel(logLevel: Int) | |
fun start() | |
fun apiKey(): String | |
fun trackEvent(eventTrack: Event) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment