We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e6b28 commit ea86a58Copy full SHA for ea86a58
2 files changed
apps/flipcash/app/src/main/kotlin/com/flipcash/app/inject/ApiModule.kt
@@ -17,6 +17,10 @@ object ApiModule {
17
@Singleton
18
@Provides
19
fun provideMixpanelApi(@ApplicationContext context: Context): MixpanelAPI {
20
- return MixpanelAPI.getInstance(context, BuildConfig.MIXPANEL_API_KEY)
+ return MixpanelAPI.getInstance(
21
+ /* context = */ context,
22
+ /* token = */ BuildConfig.MIXPANEL_API_KEY,
23
+ /* trackAutomaticEvents = */ true
24
+ )
25
}
26
buildSrc/src/main/java/Dependencies.kt
@@ -69,7 +69,7 @@ object Versions {
69
const val junit = "4.13.1"
70
const val androidx_junit = "1.1.3"
71
const val espresso = "3.4.0"
72
- const val mixpanel = "6.4.0"
+ const val mixpanel = "8.2.0"
73
74
const val markwon = "4.6.2"
75
const val timber = "5.0.1"
0 commit comments