Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 1.0 KiB

123456789101112131415161718192021222324252627282930
  1. # Android GUI for [WireGuard](https://www.wireguard.com/)
  2. **[Download from the Play Store](https://play.google.com/store/apps/details?id=com.wireguard.android)**
  3. This is an Android GUI for [WireGuard](https://www.wireguard.com/). It [opportunistically uses the kernel implementation](https://git.zx2c4.com/android_kernel_wireguard/about/), and falls back to using the non-root [userspace implementation](https://git.zx2c4.com/wireguard-go/about/).
  4. ## Building
  5. ```
  6. $ git clone --recurse-submodules https://git.zx2c4.com/wireguard-android
  7. $ cd wireguard-android
  8. $ ./gradlew assembleRelease
  9. ```
  10. ## Embedding
  11. The tunnel library is [on JCenter](https://bintray.com/wireguard/wireguard-android/wireguard-android/_latestVersion):
  12. ```
  13. implementation 'com.wireguard.android:tunnel:$wireguardTunnelVersion'
  14. ```
  15. The library makes use of Java 8 features, so be sure to support those in your gradle configuration:
  16. ```
  17. compileOptions {
  18. sourceCompatibility JavaVersion.VERSION_1_8
  19. targetCompatibility JavaVersion.VERSION_1_8
  20. }
  21. ```