Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

README.md 1.3 KiB

123456789101112131415161718192021222324252627282930313233343536
  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. macOS users may need [flock(1)](https://github.com/discoteq/flock).
  11. ## Embedding
  12. The tunnel library is [on JCenter](https://bintray.com/wireguard/wireguard-android/wireguard-android/_latestVersion), alongside [extensive class library documentation](https://javadoc.io/doc/com.wireguard.android/tunnel).
  13. ```
  14. implementation 'com.wireguard.android:tunnel:$wireguardTunnelVersion'
  15. ```
  16. The library makes use of Java 8 features, so be sure to support those in your gradle configuration:
  17. ```
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22. ```
  23. ## Translating
  24. Please help us translate the app into several languages on [our translation platform](https://crowdin.com/project/WireGuard).