Skip to content

Instantly share code, notes, and snippets.

@Antarix
Forked from patrickhammond/gist:0b13ec35160af758d98c
Last active December 19, 2017 13:04
Show Gist options
  • Save Antarix/edef5129d707ae0da0db31961b177023 to your computer and use it in GitHub Desktop.
Save Antarix/edef5129d707ae0da0db31961b177023 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