public class EmployeeChangedReceiver extends BroadcastReceiver {
@Override public void onReceive(Context context, Intent intent) {
if(EmployeeIntent.ACTION_ACTIVE_EMPLOYEE_CHANGED.equals(intent.getAction()) && intent.getStringExtra(Intents.EXTRA_EMPLOYEE_ID) != null) {
context.startService(new Intent(context, StorePINService.class));
}
}
}
No one has followed this question yet.