Вы можете использовать PendingIntent, например, так: *
Intent intent = new Intent(CUSTOM_INTENT);
LocationManager manager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
PendingIntent launchIntent = PendingIntent.getBroadcast(context, 5000, intent, 0);
manager.requestLocationUpdates(selectProvider(), 0, 0, launchIntent);
Ваш широковещательный приемник должен иметь фильтр намерений для CUSTOM_INTENT в файле манифеста