Created
May 31, 2019 15:14
-
-
Save AliAsadi/d7a30944e66daa6dce3fa4953c124ed2 to your computer and use it in GitHub Desktop.
This file contains 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
public class SingletonManager { | |
// .... | |
public synchronized static SingletonManager getInstance(Context context) { | |
if (singleton == null) { | |
singleton = new SingletonManager(context.getApplicationContext()); | |
} | |
return singleton; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment