Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sytolk/01e22bb302f55a7169c21502307e051e to your computer and use it in GitHub Desktop.
Save sytolk/01e22bb302f55a7169c21502307e051e to your computer and use it in GitHub Desktop.
Sample for how to use the Google Play Services dynamic security provider to keep the SSL library that the app will use to up date.
package com.mycompany.myapp.app;
import android.app.Application;
import android.content.Intent;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.security.ProviderInstaller;
import com.google.android.gms.security.ProviderInstaller.ProviderInstallListener;
public class MainApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
upgradeSecurityProvider();
}
private void upgradeSecurityProvider() {
ProviderInstaller.installIfNeededAsync(this, new ProviderInstallListener() {
@Override
public void onProviderInstalled() {
}
@Override
public void onProviderInstallFailed(int errorCode, Intent recoveryIntent) {
GooglePlayServicesUtil.showErrorNotification(errorCode, MainApplication.this);
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment