4
Answers

Android Deployment Error

Thomas Mapother

Thomas Mapother

13y
2.6k
1
Hello every-one I am start working on android development, the problem is when I am deploying my application every time I need to build the solution as well as application not even once many time I have to build it 2 to 3 time than my application deploying properly otherwise it will gives an error. Can some-body tell me what is the problem...

Thank you....
Answers (4)
0
Sujeet Singh
NA 129 0 7y
this is usually means one of two things:
  1. There is some very unusual code path which, when taken, always causes a crash
  2. A race condition exists between threads in your program. Thus, the crash appears unpredictably and may be difficult to reproduce

My advice to you is to start the program in the debugger, and leave it running until the exception is thrown. Then you can come back here and provide us with the relevant code, stack trace, debug output, etc.