You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/users/reporting-bugs.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,14 @@
2
2
3
3
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.
4
4
5
+
- Determine the version of Password Store you are running
6
+
- If it is 1.13.5 or below, replace `PKG` in the commands below with `dev.msfjarvis.aps`
7
+
- If it is 2.0.0-SNAPSHOT, replace `PKG` with `app.passwordstore`
5
8
- Download the Android Platform Tools from [here](https://developer.android.com/studio/releases/platform-tools) and extract them into a directory
6
9
- Enable developer options on your device and turn on USB debugging by following [these steps](https://developer.android.com/studio/debug/dev-options)
7
10
- Enable debug logging for Password Store by going to Settings > Misc
8
11
- Open a new terminal in the directory where you extracted the platform tools
9
-
- Run `./adb shell am force-stop app.passwordstore` to close the app
12
+
- Run `./adb shell am force-stop PKG` to close the app
10
13
- Launch the app again and replicate the issue
11
-
- Run `./adb logcat --pid=$(./adb shell pidof -s app.passwordstore) -d > log.txt` to capture the logs up till that point
14
+
- Run `./adb logcat --pid=$(./adb shell pidof -s PKG) -d > log.txt` to capture the logs up till that point
12
15
- Upload `log.txt` either to the GitHub issue or email it to `googleplay@passwordstore.app` with the issue link
0 commit comments