g8214435
g8214435

Reputation: 737

instabug IBGInvocationEventTwoFingersSwipeLeft not work

Sorry for my english. I try use service instabug, they i try use IBGInvocationEventTwoFingersSwipeLeft but this is not successful. I try somthing like this:

ParseAnalytics.trackAppOpenedInBackground(getIntent());
        Instabug.initialize(getApplication(), "mykey");
        Instabug.getInstance().setInvocationEvent(Instabug.IBGInvocationEvent.IBGInvocationEventTwoFingersSwipeLeft);

and like this

  ParseAnalytics.trackAppOpenedInBackground(getIntent());
    Instabug.initialize(getApplication(), "mykey").setInvocationEvent(Instabug.IBGInvocationEvent.IBGInvocationEventTwoFingersSwipeLeft);

but my method dont work(

Upvotes: 1

Views: 104

Answers (1)

Hassan Ibraheem
Hassan Ibraheem

Reputation: 2379

This could happen if you haven't finished the SDK integration steps. Specifically, if your Activity classes don't extend Instabug activities.

Upvotes: 1

Related Questions