I'm trying to detect HDMI disconnects in #godot (3.5) and it seems I have to resort to match the #logcat output against the following #regex: `^(\d{2}-\d{2})\s(\d{2}:\d{2}:\d{2}\.\d{3})\s.*Invalid device requested composition type change.*$`

Подробное руководство по Logcat в Android Studio с примерами

Logcat в Android Studio имеет множества функций, которые ускоряют отладку, тестирование и в целом поиск нужной информации в логах. Однако, большинство в лучшем случае использует только поиск по ключевому слову и даже не подозревают как сильно могут ускорить свою работу. Здесь я расскажу про Logcat в Android Studio, какие у него есть возможности, как его кастомизировать и использовать по максимуму, с практическими советами в каких ситуациях та или иная фича может вам пригодиться. Материал будет полезен как начинающим тестировщикам, так и матёрым разработчикам, ведь это универсальный инструмент, ускоряющий работу, если знать о всех его хитростях.

https://habr.com/ru/articles/818751/

#android #android_studio #log #logcat #testing_tools #qa #qa_testing

Подробное руководство по Logcat в Android Studio с примерами

Logcat в Android Studio имеет множества функций, которые ускоряют отладку, тестирование и в целом поиск нужной информации в логах. Однако, большинство в лучшем случае использует только поиск по...

Хабр

OMFG, are you serious @e_mydata ?!?

I just had another Soft-Reboot on my #Fairphone5
Now I had the opportunity to immediately grab a #logcat and wanted to comment on a existing issue for the FP5.

But no, you somehow managed to configure your GitLab instance like a fool, blocking me from creating an account 😠

Any Android 'Intent' experts here?

I discovered Intents and realized it can bridge the gap that I have with automation!!

I used LogCat to sniff an Activity, but the log truncated the data field (for example: dat=proton-calendar://protonmail.com/.... The ellipses are literally in the log string).

Questions

  • How the heck can I exfiltrate the rest of the field?
  • what is a good resource for learning about the different fields of Intents? (Google/DDG is dry)
  • ---

    Note: I have MacroDroid for dispatching Intents, but I'm not sure if I'm calling the action & data correctly.

    It could be that I AM correctly calling action, but that without the proper data payload, it merely calls the main action upon the package's class as if I didn't specify an action

    #android #adb #macrodroid #logcat #protonmail #protoncalendar @protonprivacy #developer #androiddevelopment

    I have a favorite #logcat setup in my @androidstudio 😍

    Ever need to wait for ages before something interesting happens when debugging something? If you can stream the logs, here's a #bash / #grep approach to run a custom command like a notification when a specific message appears.

    https://michd.me/jottings/bash-command-on-log-entry/

    I'm using it to watch #android's #adb #logcat and it works wonders. 🙂

    https://michd.me/jottings/bash-command-on-log-entry/

    Bash: Run arbitrary command(s) when a log entry appears - MichD

    During my work on Android apps, I regularly end up debugging things that only happen after a long wait, particularly when it’s concerning streaming music, and playing adverts. If I end up having to wait for 10+ minutes, I won’t be staring at the device the entire time. Unfortunately, this means I can easily miss events I’m interested in. Android fortunately has adb’s logcat, a way to view incoming logging messages.