Gamebase SDK for Android  1.0.0
Toast Gamebase Platform

◆ activeApp()

static void activeApp ( final Context  applicationContext)
static

Notifies the Gamebase SDK that the app has launched.

It should be called as early as possible.

Parameters
applicationContextThe application context

Example Usage:

public class TAPApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
TAPSDK.activeApp(getApplicationContext());
}
}