### Dump Logcat Logs to File (Shell) Source: https://github.com/termux/termux-app/blob/master/README.md Executes the logcat command with the -d flag to dump the entire log buffer to a file named logcat.txt in the current directory. ```Shell logcat -d > logcat.txt ``` -------------------------------- ### Termux GitHub Test Keystore Details Source: https://github.com/termux/termux-app/blob/master/README.md This snippet shows the output from a tool (likely `keytool`) providing details about the test signing key used for Termux GitHub builds. It includes the key alias, creation date, entry type, certificate details (owner, issuer, serial, validity), fingerprints (SHA1, SHA256), signature algorithm, and public key algorithm. ```Text Alias name: alias Creation date: Oct 4, 2019 Entry type: PrivateKeyEntry Certificate chain length: 1 Certificate[1]: Owner: CN=APK Signer, OU=Earth, O=Earth Issuer: CN=APK Signer, OU=Earth, O=Earth Serial number: 29be297b Valid from: Wed Sep 04 02:03:24 EEST 2019 until: Tue Oct 26 02:03:24 EEST 2049 Certificate fingerprints: SHA1: 51:79:55:EA:BF:69:FC:05:7C:41:C7:D3:79:DB:BC:EF:20:AD:85:F2 SHA256: B6:DA:01:48:0E:EF:D5:FB:F2:CD:37:71:B8:D1:02:1E:C7:91:30:4B:DD:6C:4B:F4:1D:3F:AA:BA:D4:8E:E5:E1 Signature algorithm name: SHA1withRSA (disabled) Subject Public Key Algorithm: 2048-bit RSA key Version: 3 ``` -------------------------------- ### View Realtime Logcat Logs (Shell) Source: https://github.com/termux/termux-app/blob/master/README.md Runs the logcat command to display Android system logs in realtime within the Termux terminal. Press Ctrl+c to stop the output. ```Shell logcat ``` -------------------------------- ### Conventional Commit Message Structure Source: https://github.com/termux/termux-app/blob/master/README.md This snippet shows the required structure for commit messages in the Termux project, following the Conventional Commits specification. This format is used by the create-conventional-changelog script to automatically generate changelogs. ```Syntax [optional scope]: [optional body] [optional footer(s)] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.