Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nymtech/nym-vpn-android
The NymVPN client app for Android
https://github.com/nymtech/nym-vpn-android
Last synced: 6 days ago
JSON representation
The NymVPN client app for Android
- Host: GitHub
- URL: https://github.com/nymtech/nym-vpn-android
- Owner: nymtech
- License: gpl-3.0
- Created: 2024-01-23T10:47:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-11T16:56:21.000Z (7 months ago)
- Last Synced: 2024-04-11T21:34:40.977Z (7 months ago)
- Language: Kotlin
- Homepage:
- Size: 8.52 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NymVPN Android
The Android client application for NymVPN.
## Building
### Install Rust
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```### Add android targets to Rust
```
rustup target add \
aarch64-linux-android \
armv7-linux-androideabi \
x86_64-linux-android \
i686-linux-android
```### Install cargo-ndk
```
cargo install cargo-ndk
```### Install Go
```
brew install go
```### Install JDK 17
```
brew install openjdk@17
```### Install protobuf
```
brew install protobuf
```### Install Android Studio w/NDK
```
$ git clone https://github.com/nymtech/nymvpn-android
$ cd nymvpn-android
$ ./gradlew assembleDebug
```