ByeDPIAndroid/README.md

98 lines
2.9 KiB
Markdown
Raw Normal View History

2024-02-22 18:06:02 +00:00
# ByeDPI for Android
2024-02-28 13:19:14 +00:00
**English** | [Русский](README-ru.md)
2024-02-22 18:06:02 +00:00
<div style="text-align: center;">
2024-08-21 13:39:30 +00:00
<img alt="ByeDPI logo" src=".github/images/logo.svg" width="100%" height="200px">
2024-02-28 13:19:14 +00:00
</div>
2024-02-22 18:06:02 +00:00
2024-02-28 13:19:14 +00:00
---
Android application that runs a local VPN service to bypass DPI (Deep Packet Inspection) and censorship.
2024-08-12 14:51:26 +00:00
This application runs a SOCKS5 proxy [ByeDPI](https://github.com/hufrea/byedpi) and redirects all traffic through it.
2024-02-28 13:19:14 +00:00
2024-03-03 16:29:08 +00:00
## Installation
2024-02-28 13:19:14 +00:00
2024-03-03 16:29:08 +00:00
[<img src="https://github.com/machiav3lli/oandbackupx/blob/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png"
alt="Get it on GitHub"
height="80">](https://github.com/dovecoteescapee/ByeDPIAndroid/releases)
2024-08-21 13:39:30 +00:00
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png"
alt="Get it on IzzyOnDroid"
height="80">](https://apt.izzysoft.de/fdroid/index/apk/io.github.dovecoteescapee.byedpi)
2024-03-03 16:29:08 +00:00
### Or use Obtainium
2024-08-21 13:39:30 +00:00
1. Install [Obtainium](https://github.com/ImranR98/Obtainium/blob/main/README.md#installation)
2024-03-03 16:29:08 +00:00
2. Add the app by URL:
`https://github.com/dovecoteescapee/ByeDPIAndroid`
2024-02-28 13:19:14 +00:00
## Settings
2024-08-21 13:39:30 +00:00
To bypass some blocks, you may need to change the settings. More about the various settings can be found in the [ByeDPI documentation](https://github.com/hufrea/byedpi/tree/v0.12#readme).
2024-02-28 13:19:14 +00:00
## FAQ
2024-08-09 13:18:17 +00:00
### I can't configure it. What to do?
You can ask for help in [discussion](https://github.com/dovecoteescapee/ByeDPIAndroid/discussions).
2024-08-12 14:51:26 +00:00
### Does the application require root access?
No. All application features work without root.
2024-02-28 13:19:14 +00:00
### Is this a VPN?
No. The application uses the VPN mode on Android to redirect traffic, but does not send anything to a remote server. It does not encrypt traffic and does not hide your IP address.
2024-08-18 22:47:16 +00:00
### How to use ByeDPI with AdGuard?
2024-08-12 14:51:26 +00:00
1. Run ByeDPI in proxy mode.
2. Add ByeDPI to AdGuard exceptions on the "App management" tab.
3. In AdGuard settings, specify the proxy:
```plaintext
Proxy type: SOCKS5
Proxy host: 127.0.0.1
Proxy port: 1080 (default)
```
2024-02-28 13:19:14 +00:00
### What data does the application collect?
None. The application does not send any data to a remote server. All traffic is processed on the device.
### Are there any for other platforms?
2024-08-21 13:39:30 +00:00
[Similar projects](https://github.com/ValdikSS/GoodbyeDPI/blob/master/README.md#similar-projects))
2024-02-28 13:19:14 +00:00
### What is DPI?
DPI (Deep Packet Inspection) is a technology for analyzing and filtering traffic. It is used by providers and government agencies to block sites and services.
2024-02-22 18:06:02 +00:00
## Dependencies
- [ByeDPI](https://github.com/hufrea/byedpi)
2024-08-18 22:47:16 +00:00
- [hev-socks5-tunnel](https://github.com/heiher/hev-socks5-tunnel)
2024-08-04 22:21:39 +00:00
## Building
For building the application, you need:
1. JDK 8 or later
2. Android SDK
3. Android NDK
2024-08-18 22:47:16 +00:00
4. CMake 3.22.1 or later
2024-08-04 22:21:39 +00:00
To build the application:
2024-08-18 22:47:16 +00:00
1. Clone the repository with submodules:
```bash
git clone --recurse-submodules
```
2024-08-18 22:47:16 +00:00
2. Run the build script from the root of the repository:
```bash
./gradlew assembleRelease
```
2024-08-18 22:47:16 +00:00
3. The APK will be in `app/build/outputs/apk/release/`