Last active
November 15, 2022 02:02
-
-
Save t4kemyh4nd/3c05c0d2f271b0b81d2b3ff1608a5a95 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