Listing of manufacturer's clock / alarm package and class name, Please add

android, class, clock, package

Solution

Here some munifactures and actions, plus thirdparty actions (thirdparty alarm apps)

// Stock alarms
// Nexus (?)
"com.android.deskclock.ALARM_ALERT";
"com.android.deskclock.ALARM_DISMISS";
"com.android.deskclock.ALARM_DONE";
"com.android.deskclock.ALARM_SNOOZE";
// stock Android (?)
"com.android.alarmclock.ALARM_ALERT";
// Stock alarm Manufactures
// Samsung
"com.samsung.sec.android.clockpackage.alarm.ALARM_ALERT";
// HTC
"com.htc.android.worldclock.ALARM_ALERT";
// Sony
"com.sonyericsson.alarm.ALARM_ALERT";
// ZTE
"zte.com.cn.alarmclock.ALARM_ALERT";
// Motorola
"com.motorola.blur.alarmclock.ALARM_ALERT";

// Thirdparty Alarms
// Gentle Alarm
"com.mobitobi.android.gentlealarm.ALARM_INFO";
// Sleep As Android
"com.urbandroid.sleep.alarmclock.ALARM_ALERT";
// Alarmdroid (1.13.2)
"com.splunchy.android.alarmclock.ALARM_ALERT";

This are broadcast actions, which you can receive with a receiver.

Edit: I've found the alarm action for the LG phones:

com.lge.alarm.alarmclocknew

Problem

THis is not really a question, Sorry. I just wanted help on getting the package and class names of alarm and clocks of different android makers' clock and alarm. I have a listing here of HTC, Samsung, and stock android class names. But you can guess the package names. ``` // HTC "com.htc.android.worldclock.TimerAlert",// "com.htc.android.worldclock.AlarmAlert",// // Samsung "com.sec.android.app.clockpackage.ClockPackage",// "com.sec.android.app.clockpackage.alarm.AlarmAlert",// // Motorola "com.motorola.blur.alarmclock.AlarmAlert",// "com.motorola.blur.alarmclock.AlarmClock",// "com.motorola.blur.alarmclock.AlarmTimerAlert", // Stock Android Clock "com.android.alarmclock.AlarmClock",// 1.5 / 1.6 "com.android.deskclock.DeskClock",// ``` If you have an LG, Sony, or any other android maker out there, please add to this list. i beg you.

Original source