Local standalone client

I developed an Android app. Now it's time to give it to beta testers.

Is there a standalone application that will collect LogCat output? I do not want testers to install the entire Android development environment. I thought that the application would collect logs via the USB port and display them on the PC console (registering on the SD card is not convenient), so the tester can provide emergency tracing or some information for debugging.

+7
android stack-trace testing logcat
source share
3 answers

adb logcat standalone application is the answer.

It can be downloaded from this site .

+5
source share

Yes, android-log-collector . This application is really useful ... testers just need to install, and when they need to send a log trace, just run this application and choose how to send a log code to you (for example, by email).

+4
source share

If you use a mac, you can always try: https://github.com/YANOUSHek/LogCat

0
source share

All Articles