If you want to show the InApp scheme in a different way, we put at your disposal some methods so that you can customize the "painting", without affecting the statistics or the InApp functionalities. Learn how our SDK paints it:
InApp object pickup
Com.Indigitall.Maui.MInAppConfiguration config = new();
indigitall.ShowCustomInApp(config, "YOUR_INAPP_CODE", (inApp) =>
{
//do something
}, (message) =>
{
//log error
});
Actions to count clicks or to not show InApp anymore
For the case of what we call Dismiss Forever, once the action is performed, this method must be called:
indigitall.AddDismissForever(inApp);
In the event that you want to show an inApp only if you make 'x' clicks or clicks on it, you must add the following:
indigitallInApp.InAppWasClicked(inApp);
In this method the statistics of the click are sent, not just the click counter.