Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 1004 Bytes

File metadata and controls

13 lines (11 loc) · 1004 Bytes

Reporting bugs

When submitting a bug report, it is often helpful to include a log. The following steps can be followed on any Linux machine to capture the logs for Password Store in a text file that you can attach to a GitHub issue.

  • Download the Android Platform Tools from here and extract them into a directory
  • Enable developer options on your device and turn on USB debugging by following these steps
  • Enable debug logging for Password Store by going to Settings > Misc
  • Open a new terminal in the directory where you extracted the platform tools
  • Run adb shell am force-stop app.passwordstore.agrahn to close the app
  • Launch the app again, then
  • Run adb logcat --pid=$(adb shell pidof -s app.passwordstore.agrahn) | tee log.txt to capture the logs
  • Replicate the issue or crash by interacting with the app on your device
  • Upload log.txt to the GitHub issue