Fix Android instructions

This commit is contained in:
HackrOne 2018-02-03 09:55:13 -08:00
parent 7f094b3b47
commit f55b204ba8
1 changed files with 24 additions and 7 deletions

View File

@ -90,33 +90,50 @@ Run `Termux` and enter these lines in the given order (If it asks you if you wan
``` ```
pkg update pkg update
pkg upgrade pkg upgrade
pkg install git pkg install git nodejs
pkg install nodejs
``` ```
### 3. Download ### 3. Download
First download the latest version from the repo: First download the latest version from the repo:
``` ```
git clone https://git.teknik.io/SMLoadrDev/SMLoadr.git git clone --depth 1 https://git.teknik.io/SMLoadrDev/SMLoadr.git
``` ```
### 4. Install ### 4. Install
Now lets install what we've downloaded:
mv SMLoadr/{package.json,SMLoadr.js} ./
rm -r SMLoadr
```
Now we install what we've downloaded:
``` ```
npm install npm install
``` ```
In order to make SMLoadr work we need to setup storage for `Termux`:
In order to let SMLoadr download to the right folder, we need to setup storage for `Termux`:
``` ```
termux-setup-storage termux-setup-storage
``` ```
### 5. Run Now we trick SMLoadr into downloading to the public storage:
Last but not least run the app: ```
mkdir ~/storage/shared/SMLoadr
ln -s ~/storage/shared/SMLoadr DOWNLOADS
```
### 6. Run
Last but not least run the app (downloaded files will be in a folder named SMLoadr in public storage):
``` ```
node SMLoadr.js node SMLoadr.js
``` ```
### 7. Updating
To update it, run step 3 and step 4
## How to use (from source) ## How to use (from source)