Replies: 1 comment 3 replies
-
When you go to see a doctor, do you say "Doctor, I hurt. What is wrong"? No - you say "Doctor, I was playing tennis yesterday, and after playing for about half an hour, my elbow started to hurt every time I did a backhand". The first response gives the doctor nothing to work with. The latter tells them what you were doing, how long you were doing it for, and the specific problem you're experiencing. Given that information, they can start to diagnose your problem. The same is true of programming and debugging. Without knowing what you are doing, and exactly what behavior you're seeing, it's impossible to diagnose and provide suggestions. If you think you've found a bug, that generally means producing a reproduction case - the simplest possible version of an app that will manifest the problem you're describing. To be clear - that does not mean "send us the full source code for your entire app". It means build up a helloworld example until it has the problem you're seeing. We're looking for the simplest possible version of an application that exhibits the problem you're describing. It also means providing log files - evidence that you're actually seeing the problem that you describe. |
Beta Was this translation helpful? Give feedback.
-
The android app run for a while, and it will be killed,how to solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions