I am trying to pass data through my Intent into the next activity so I can receive it and give a timer values.
Button TimerButton = (Button)findViewById(R.id
int beefType = getIntent().getIntExtra("beefType", -1);
You need to put this line:
int beefType = getIntent().getIntExtra("beefType", 200);
in the onCreate method and not as a field initializer.
And next time - read the stacktrace before asking. If you are still stuck after reading it, attach it to youyr questioin as well.
Good Luck!