Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ While releasing the app, make sure to [**get the key from Play Console**](#getti
<details>
<summary>Windows</summary>
<div>
```keytool -list -v -keystore C:\Users\leon\.android\debug.keystore -alias androiddebugkey```
```keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android```

If you get the following error while trying the above command:

Expand All @@ -155,7 +155,7 @@ While releasing the app, make sure to [**get the key from Play Console**](#getti
<details>
<summary>Mac/Linux</summary>
<div>
```keytool -list -v \ -alias androiddebugkey -keystore ~/.android/debug.keystore```
```keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android```
</div>
</details>

Expand Down