This line is causing the problem;
textView1.setText((int) (millisUntilFinished/1000));
What you do is set the resource identifier for textView1, while what you are looking for is something like:
textView1.setText(Long.toString(millisUntilFinished/1000));
Also a string;
iFallApp app1 = new iFallApp();
Pretty suspicious. Remove it just in case before using it accidentally. You already have an iFallApp created by the Android platform, and you can pass it using this if necessary.
source share