├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml └── misc.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── pixelwave │ │ └── ciphervpn │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── pixelwave │ │ │ └── ciphervpn │ │ │ ├── CipherApplication.kt │ │ │ ├── MainActivity.kt │ │ │ ├── adapter │ │ │ └── ServersAdapter.kt │ │ │ ├── data │ │ │ ├── Repository.kt │ │ │ ├── db │ │ │ │ ├── AppDatabase.kt │ │ │ │ ├── DatabaseBuilder.kt │ │ │ │ └── ServerDao.kt │ │ │ ├── model │ │ │ │ ├── ConnectionStatus.kt │ │ │ │ └── Server.kt │ │ │ └── remote │ │ │ │ ├── RetrofitClient.kt │ │ │ │ ├── ServerResponseBodyConverter.kt │ │ │ │ └── ServerService.kt │ │ │ ├── di │ │ │ ├── AppModule.kt │ │ │ └── RepositoryModule.kt │ │ │ ├── fragment │ │ │ ├── HomeFragment.kt │ │ │ └── ServersFragment.kt │ │ │ ├── util │ │ │ ├── Constants.kt │ │ │ ├── CsvParser.kt │ │ │ ├── RippleBackground.java │ │ │ └── data.kt │ │ │ └── viewmodel │ │ │ ├── ServerSharedViewModel.kt │ │ │ └── ServersViewModel.kt │ └── res │ │ ├── anim │ │ ├── item_animation_fall_down.xml │ │ └── layout_animation.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── divider.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_notification.png │ │ ├── ic_upload.xml │ │ └── round_arrow_forward_ios_24.xml │ │ ├── font │ │ ├── inter.xml │ │ ├── inter_bold.ttf │ │ ├── inter_medium.ttf │ │ ├── inter_regular.ttf │ │ └── inter_semi_bold.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_home.xml │ │ ├── fragment_servers.xml │ │ └── servers_rv_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── navigation │ │ └── mobile_navigation.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ ├── file_paths.xml │ │ └── network_security_config.xml │ └── test │ └── java │ └── com │ └── pixelwave │ └── ciphervpn │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── how-it-works.png ├── preview_image.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/pixelwave/ciphervpn/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/androidTest/java/com/pixelwave/ciphervpn/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/CipherApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/CipherApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/adapter/ServersAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/adapter/ServersAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/Repository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/db/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/db/AppDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/db/DatabaseBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/db/DatabaseBuilder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/db/ServerDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/db/ServerDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/model/ConnectionStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/model/ConnectionStatus.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/model/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/model/Server.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/remote/RetrofitClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/remote/RetrofitClient.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/remote/ServerResponseBodyConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/remote/ServerResponseBodyConverter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/data/remote/ServerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/data/remote/ServerService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/di/RepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/di/RepositoryModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/fragment/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/fragment/HomeFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/fragment/ServersFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/fragment/ServersFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/util/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/util/CsvParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/util/CsvParser.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/util/RippleBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/util/RippleBackground.java -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/util/data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/util/data.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/viewmodel/ServerSharedViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/viewmodel/ServerSharedViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/pixelwave/ciphervpn/viewmodel/ServersViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/java/com/pixelwave/ciphervpn/viewmodel/ServersViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/item_animation_fall_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/anim/item_animation_fall_down.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/layout_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/anim/layout_animation.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable/divider.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable/ic_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_arrow_forward_ios_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/drawable/round_arrow_forward_ios_24.xml -------------------------------------------------------------------------------- /app/src/main/res/font/inter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/font/inter.xml -------------------------------------------------------------------------------- /app/src/main/res/font/inter_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/font/inter_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/inter_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/font/inter_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/inter_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/font/inter_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/inter_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/font/inter_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/layout/fragment_servers.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/servers_rv_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/layout/servers_rv_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/navigation/mobile_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/navigation/mobile_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /app/src/test/java/com/pixelwave/ciphervpn/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/app/src/test/java/com/pixelwave/ciphervpn/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/gradlew.bat -------------------------------------------------------------------------------- /how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/how-it-works.png -------------------------------------------------------------------------------- /preview_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/preview_image.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anass001/CipherVPN/HEAD/settings.gradle --------------------------------------------------------------------------------