This guide is to help developers get setup with the SDL Java library version 5.1. It is assumed that the developer is already updated to at least version 5.0 of the library.
The full release notes are published here.
Starting with SDL Java library version 5.1 the release will be published to Maven Central instead of JCenter.
To gain access to the Maven Central repository, make sure your app's build.gradle
file includes the following:
repositories { mavenCentral() }
In 5.1 a new onSystemInfoReceived method was added to the SdlManagerListener. More detail can be found here
SdlManagerListener
method: onSystemInfoReceived
auto generates in Android Studio to returns false. This will cause your app to not connect. You must change it to true or implement logic to check system info to see if you wish for your app to connect to that system.
SdlManagerListener listener = new SdlManagerListener() { @Override public void onStart() { } @Override public void onDestroy() { } @Override public void onError(String info, Exception e) { } @Override public LifecycleConfigurationUpdate managerShouldUpdateLifecycle(Language language, Language hmiLanguage) { return null; } @Override public boolean onSystemInfoReceived(SystemInfo systemInfo) { //Check the SystemInfo object to ensure that the connection to the device should continue return true; } };
In 5.1 rather than sending an Alert RPC we now recommend sending an AlertView through the ScreenManagers presentAlert method. More detail can be found here
Before:
private void showAlert(String text) { Alert alert = new Alert(); alert.setAlertText1(text); alert.setDuration(5000); sdlManager.sendRPC(alert); }
Now:
private void showAlert(String text) { AlertView.Builder builder = new AlertView.Builder(); builder.setText(text); builder.setTimeout(5); AlertView alertView = builder.build(); sdlManager.getScreenManager().presentAlert(alertView, new AlertCompletionListener() { @Override public void onComplete(boolean success, Integer tryAgainTime) { Log.i(TAG, "Alert presented: "+ success); } }); }