docs/user-guide/troubleshooting/find-your-app-version.md
For bug reports it's important for the developers to know which version of Thunderbird you're using. This is especially true if you attach debug logs, since they show exactly which part of the code was active when the error occurred. Because the apps are updated frequently, version numbers (and code line references) can change quickly.
Follow the instructions below to find the exact version number you’re running.
There are several ways to check the version number: inside the app, through Android’s system settings, or with ADB.
If the app won’t start, Android usually displays the version number at the bottom of its App info screen.
Alternatively, you can long-press the Thunderbird icon in your app drawer or home screen, then tap the "App info" (i) icon that appears.
If you have ADB set up, you can retrieve the version number via the command line:
adb shell dumpsys package net.thunderbird.android | grep versionName
adb shell dumpsys package net.thunderbird.android.beta | grep versionCode
adb shell dumpsys package net.thunderbird.android.daily | grep versionCode
# For K-9 Mail:
adb shell dumpsys package com.fsck.k9 | grep versionName
This will return a line like:
versionName=12.1
If you’ve built your own version of the app from the source repository, please include the commit hash in your bug report along with the version number.