there is such an android game

Please tell me : how can you integrate something like Yandex Webvisor into it ??

    1 answer 1

    Just like in any other android application ( there are native applications in mind ).

    1. Add a dependency to build.gradle :

       compile 'com.yandex.android:mobmetricalib:2.60' 
    2. Initialize the library:

       public class MyApp extends Application { @Override public void onCreate() { super.onCreate(); // Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡ AppMetrica SDK YandexMetrica.activate(getApplicationContext(), API_key); // ΠžΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Π½ΠΈΠ΅ активности ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ YandexMetrica.enableActivityAutoTracking(this); } } 
    3. Location tracking requires permission:

       android.permission.ACCESS_COARSE_LOCATION 

    Source: AppMetrica Connection and Initialization .