-
-
Save michaellcader/d677a95b328719b24d207dec458df76e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private String config(Config config, boolean z) { | |
if (z) { | |
SecurityManager securityManager = new SecurityManager(config, this.mActivity.getApplicationContext()); | |
if (securityManager.isExpired() || !securityManager.isValidSignature()) { // validation of the config object | |
return new Response(202).toString(); | |
} | |
} | |
this.mFM = new FeatureManager(config, this.mActivity.getClassLoader()); | |
this.mPM = new PermissionManager(config); | |
return new Response(0).toString(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment