void initializationSample() {
@Override
} else {
if (updateInfo != null) {
return;
}
...
}
...
}
});
}
This class is a wrapper class that is provided to use various features of Gamebase platform.
Definition: Gamebase.java:61
static void initialize(final Activity activity, final GamebaseConfiguration configuration, @Nullable final GamebaseDataCallback< LaunchingInfo > callback)
This function initializes the Gamebase SDK.
Definition: Gamebase.java:137
static boolean isSuccess(@Nullable final GamebaseException exception)
Returns true if the GamebaseException object is null or the error code is zero.
Definition: Gamebase.java:160
An object that contains the success or failure of the execution of the Gamebase function.
Definition: GamebaseException.java:26
If the Initialize API fails with error LAUNCHING_UNREGISTERED_CLIENT (2004), this VO class tells you...
Definition: UpdateInfo.java:53
String message
This message indicates to the user that an update is needed.
Definition: UpdateInfo.java:63
String installUrl
Market url to update the application.
Definition: UpdateInfo.java:59
static UpdateInfo from(GamebaseException exception)
Factory method to create VO instance.
Definition: UpdateInfo.java:80
Definition: LaunchingInfo.java:19
Generic callback interface that returns data.
Definition: GamebaseDataCallback.java:12