Skip to content

Instantly share code, notes, and snippets.

@Ankit-Slnk
Created February 12, 2022 17:08
Show Gist options
  • Save Ankit-Slnk/653dea80d153610c62d589db0c0e2988 to your computer and use it in GitHub Desktop.
Save Ankit-Slnk/653dea80d153610c62d589db0c0e2988 to your computer and use it in GitHub Desktop.
code to create singleton class in android java
private static final ClassName ourInstance = new ClassName();
public static ClassName getInstance() {
return ourInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment