In the examples, they create Intent as:
Intent intent = new Intent(this, AlarmReceiver.class);
But suppose my AlarmReceiver class is in another app, how do I create this intent?
I've tried with
new Intent("com.app.AlarmReceiver")
but nothing happens.. It was not called..
Any idea?
--Broadcast definition added using the manifest editor on Eclipse:
<receiver android:name="AlarmReceiver"></receiver>
</application>
--
Related:
http://stackoverflow.com/questions/3259912/how-do-i-start-my-app-from-my-other-app/3259975#3259975 (but this same code is not working for broadcasts..)