├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Gradle files 2 | .gradle/ 3 | build/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | 8 | # Log/OS Files 9 | *.log 10 | 11 | # Android Studio generated files and folders 12 | captures/ 13 | .externalNativeBuild/ 14 | .cxx/ 15 | *.apk 16 | output.json 17 | 18 | # IntelliJ 19 | *.iml 20 | .idea/ 21 | misc.xml 22 | deploymentTargetDropDown.xml 23 | render.experimental.xml 24 | 25 | # Keystore files 26 | *.jks 27 | *.keystore 28 | 29 | # Google Services (e.g. APIs or Firebase) 30 | google-services.json 31 | 32 | # Android Profiling 33 | *.hprof 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # v2rayNG 2 | 安卓版 V2Ray 客户端,支持 Xray core 和 v2fly core 3 | 4 | 5 | Geoip 和 Geosite 6 | geoip.dat 和 geosite.dat 文件位于 Android/data/com.v2ray.ang/files/assets 中(某些 Android 设备的路径可能不同) 7 | 下载功能将在此版本库中获得增强版(注意需要使用有效的代理服务器) 8 | 可手动导入最新的官方域名列表和 IP 列表 9 | 可在同一文件夹中使用第三方数据文件,如 h2y 10 | 11 | 12 | 文档 13 | https://github.com/2dust/v2rayNG/wiki 14 | 15 | 16 | V2rayNG 文件夹下的 Android 项目可以直接在 Android Studio 中编译,也可以使用 Gradle 封装器编译。 但 aar 中的 v2ray 内核(可能)已经过时。 17 | 可以从 Golang 项目 AndroidLibV2rayLite 或 AndroidLibXrayLite 中编译 aar。 如需快速入门,请阅读 Go Mobile 和 Makefiles for Go Developers 指南。 18 | 19 | v2rayNG 可以在 Android 模拟器上运行。 对于 WSA,需要通过 appops set [package name] ACTIVATE_VPN allow 授予 VPN 权限。 20 | 21 | 通过DeepL翻译 https://www.deepl.com/app/?utm_source=android&utm_medium=app&utm_campaign=share-translation 22 | --------------------------------------------------------------------------------