Files

55 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2024-07-15 00:03:55 +08:00
# GUI for EasyTier
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
this is a GUI implementation for EasyTier, based on Tauri2.
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
## Compile
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
### Install prerequisites
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
```
apt install npm
npm install -g pnpm
```
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
### For Desktop (Win/Mac/Linux)
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
```
cd ../tauri-plugin-vpnservice
pnpm install
pnpm build
2025-06-02 06:47:17 +08:00
cd ../easytier-web/frontend-lib
pnpm install
pnpm build
cd ../../easytier-gui
2024-07-15 00:03:55 +08:00
pnpm install
pnpm tauri build
```
2024-04-14 23:29:34 +08:00
2024-07-15 00:03:55 +08:00
### For Android
Need to install android SDK / emulator / NDK / Java (easy with android studio)
```
# For ArchLinux
sudo pacman -Sy sdkmanager
sudo sdkmanager --install platform-tools platforms\;android-34 ndk\;r26 build-tools
export PATH=/opt/android-sdk/platform-tools:$PATH
export ANDROID_HOME=/opt/android-sdk/
export NDK_HOME=/opt/android-sdk/ndk/26.0.10792818/
rustup target add aarch64-linux-android
install java 20
```
Java version depend on gradle version specified in (easytier-gui\src-tauri\gen\android\build.gradle.kts)
See [Gradle compatibility matrix](https://docs.gradle.org/current/userguide/compatibility.html) for detail .
```
pnpm install
pnpm tauri android init
pnpm tauri android build
2024-09-11 09:13:00 +08:00
```