Hello Androider,
Androider wrote:.. i want to launch it when the ALARM rings?
what do you mean with ALARM

:
You can setup an Alarm to be waked up like this, could be used for a wakeup-application (
click for more infos on Alarm-Manager ):
Using java Syntax Highlighting
try {
android.os.IServiceManager sm = android.os.ServiceManagerNative
.getDefault();
android.app.IAlarmManager alarmService = android.app.IAlarmManager.Stub
.asInterface(sm.getService("alarm"));
long timeToTrigger = System.currentTimeMillis() + 60 * 1000; // 60 seconds after now
Intent myCustomIntent = new Intent("MY.APPLICATION.WAKEUP.ACTION");
alarmService.set(AlarmManager.RTC_WAKEUP, timeToTrigger,
myCustomIntent);
} catch (DeadObjectException e) {
}
Parsed in 0.032 seconds, using
GeSHi 1.0.8.4
My code is untested, but looks good

Should work at least very similar...
Hope I could help you
Regards,
plusminus