Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for README and a description to use pyvenv #92

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ Script to add gapps and other stuff to waydroid !
```
git clone https://github.com/casualsnek/waydroid_script
cd waydroid_script
sudo python3 -m pip install -r
sudo python3 -m pip install -r requirements.txt
sudo python main.py
```

or use a Python virtual environment:

```
git clone https://github.com/casualsnek/waydroid_script
cd waydroid_script
python3 -m venv --upgrade-deps .venv
.venv/bin/pip install -r requirements.txt
sudo .venv/bin/python main.py
```

![image-20230430013103883](assets/img/README/image-20230430013103883.png)

![image-20230430013119763](assets/img/README/image-20230430013119763.png)
Expand Down Expand Up @@ -171,7 +181,7 @@ sudo python3 main.py hack hidestatusbar

## Get Android ID for device registration

You need to register you device with its it before being able to use gapps, this will print out your Android ID which you can use for device registration required for google apps:
You need to register your device with its ID before being able to use gapps, this will print out your Android ID which you can use for device registration required for google apps:
Open terminal and switch to directory where "main.py" is located then run:

sudo python3 main.py google
Expand Down