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

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

/**
 * Interface to re-use some important variables from C++.
 */
public class PrivateVariables
{
  public static native String alohalyticsUrl();
  public static native String flurryKey();
  public static native String appsFlyerKey();
  public static native String myTrackerKey();
  public static native int myTargetSlot();
  public static native int myTargetRbSlot();
  public static native String myTargetCheckUrl();
  public static native String googleWebClientId();
  /**
   * @return interval in seconds
   */
  public static native long myTargetCheckInterval();
}