Skip to content

Instantly share code, notes, and snippets.

View sincerekamal's full-sized avatar

Kamalakannan Jayaraman sincerekamal

  • Bangalore
View GitHub Profile
@sincerekamal
sincerekamal / BadgeUtils
Last active September 13, 2015 07:34 — forked from Tadas44/BadgeUtils
Launcher icon notification for Samsung and Sony Xperia devices
public class BadgeUtils {
public static void setBadge(Context context, int count) {
setBadgeSamsung(context, count);
setBadgeSony(context, count);
}
public static void clearBadge(Context context) {
setBadgeSamsung(context, 0);