Oftentimes you will need to know which exactly build of the application user needs. For your regular users version name should be enough, but when it comes to your testers, you will probably give them multiple version between releases to test. This is why you may want to add build version also to your application… Czytaj dalej How to add commit hash as a build version
Tag: debugging
How to diagnose ANR
ANR are one of the biggest nightmares of every Android Developer. ANR means Application Not Responding and it is exactly this. There are three main types of ANR: The app is doing slow I/O operations on the main thread. The app performs long calculations on the main thread. The main thread waits for a synchronous… Czytaj dalej How to diagnose ANR
How to debug by wifi with adb
Debugging over USB is hard and frustrating. This is why I love wifi debugging. Here is the easiest and fastest way to debug your app over wifi, and no root needed. First you need to save adb path into your Windows environment path, Let’s assume you did that already. Activate debug mode in Android Connect… Czytaj dalej How to debug by wifi with adb