Skip to content

Commit 2ab813f

Browse files
author
Jonas Hendrickx
authored
Missing coreutils dependency in documentation (#120)
1 parent 32afa2a commit 2ab813f

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

src/guide/frontend/android.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,28 @@ To obtain the Facet ID continue the steps below, the Facet ID typically looks li
102102

103103
::: tabs
104104

105-
@tab Bash
105+
@tab Bash MacOS
106+
107+
1. Install Homebrew
108+
2. Execute the following command:
109+
```sh
110+
brew install coreutils
111+
```
112+
3. Extract the SHA-256 hash:
113+
114+
```bash
115+
# Linux, Mac OS, Git Bash, ...
116+
keytool -list -v -keystore ~/.android/debug.keystore | grep "SHA256: " | cut -d " " -f 3 | xxd -r -p | basenc --base64url | sed 's/=//g'
117+
```
118+
119+
@tab Bash Ubuntu
120+
121+
1. Execute the following commands in your terminal to install any missing dependencies.
122+
```shell
123+
sudo apt-get update
124+
sudo apt-get install coreutils
125+
```
126+
2. Extract the SHA-256 hash:
106127

107128
```bash
108129
# Linux, Mac OS, Git Bash, ...

0 commit comments

Comments
 (0)