Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EventLogger.java « analytics « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36faf46fd245c52f0c048ed772564f00f97e9593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mapswithme.maps.analytics;

import android.app.Activity;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import java.util.Map;

public interface EventLogger
{
  void initialize();
  void sendTags(@NonNull String tag, @Nullable String[] params);
  void logEvent(@NonNull String event, @NonNull Map<String, String> params);
  void startActivity(@NonNull Activity context);
  void stopActivity(@NonNull Activity context);
}