Skip to content

Commit d2f04be

Browse files
committed
Add install-android-apps-on-linux-using-waydroid.md
1 parent 1093e3f commit d2f04be

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Install Android Apps on Linux Using Waydroid
2+
3+
## 1. Waydroid Installation Steps for Linux Mint
4+
5+
1. Open a terminal and run the following commands to install Waydroid:
6+
```sh
7+
# Install pre-requisites
8+
sudo apt install curl ca-certificates -y
9+
# Add the official repository
10+
curl -s https://repo.waydro.id | sudo bash
11+
# Download and install Waydroid
12+
sudo apt install waydroid -y
13+
# Start container service (if not started automatically)
14+
sudo systemctl enable --now waydroid-container
15+
# Download Android image VANILLA (no Google) for Waydroid
16+
sudo waydroid init -s VANILLA
17+
```
18+
2. If you want or need to use Google Play Store, replace `VANILLA` with `GAPPS` in the command above:
19+
```sh
20+
sudo waydroid init -s GAPPS
21+
```
22+
3. After installation you can start Waydroid by running:
23+
```sh
24+
waydroid show-full-ui
25+
```
26+
27+
## 2. Sources
28+
29+
- https://waydro.id/#install
30+
- https://docs.waydro.id/usage/install-on-desktops#ubuntu-debian-and-derivatives

0 commit comments

Comments
 (0)