You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throwIllegalArgumentException("Invalid parameters for InMemoryStorageProvider. InMemoryStorageProvider requires at least 1 parameter and the first argument has to be an instance of Analytics")
if (params.isEmpty() || params[0] !isAnalytics|| params[1] !isKey) {
64
+
if (params.isEmpty() || params[0] !isAnalytics) {
65
65
throwIllegalArgumentException("Invalid parameters for ConcreteStorageProvider. ConcreteStorageProvider requires at least 1 parameter and the first argument has to be an instance of Analytics")
66
66
}
67
67
68
68
val analytics = params[0] asAnalytics
69
-
val key = params[1] asKey
70
69
val config = analytics.configuration
71
70
72
71
val directory =File("/tmp/analytics-kotlin/${config.writeKey}")
0 commit comments