Skip to content

Instantly share code, notes, and snippets.

@pepyakin
Created May 21, 2015 14:48
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save pepyakin/8d2221501fd572d4a61c to your computer and use it in GitHub Desktop.
Save pepyakin/8d2221501fd572d4a61c to your computer and use it in GitHub Desktop.
Gist which should prevent leaks of Activity in ClipboardUIManager.
public class ExampleApplication extends Application {
@Override public void onCreate() {
super.onCreate();
try {
Class<?> cls = Class.forName("android.sec.clipboard.ClipboardUIManager");
Method m = cls.getDeclaredMethod("getInstance", Context.class);
Object o = m.invoke(null, this);
} catch (Exception ignored) { }
}
}
@AmandaRiu
Copy link

Thanks you for this! I was ready to yank out all of my hair trying to figure out how to work around this Samsung BS. :)

@SatarTmimi
Copy link

thank you thank you thank you thank you thank you thank you thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment