Skip to main content

Initialization

Before calling the SDK, you need to initialize it with the keys supplied by BEYABLE.

Init of BEYABLE SDK
public class MainApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
// Init of BEYABLE SDK
Beyable.initInstance(
getApplicationContext(), // Android application context (should be the ApplicationContext)
"aasadasFASDGADGAKAMFKASFMASKFMNSAK", // API key supplied by BEYABLE
"https://fd.front.activation.beyable.com"); // Backend URL (if null, the URL will be the testing environment)
}
}