{"id":50224559,"url":"https://github.com/fptn-project/fptnclient-android","last_synced_at":"2026-05-31T07:01:56.696Z","repository":{"id":273193570,"uuid":"887422954","full_name":"fptn-project/FptnClient-Android","owner":"fptn-project","description":"FPTN VPN - Android client","archived":false,"fork":false,"pushed_at":"2026-05-26T12:00:43.000Z","size":4158,"stargazers_count":81,"open_issues_count":10,"forks_count":12,"subscribers_count":5,"default_branch":"develop","last_synced_at":"2026-05-26T14:38:51.244Z","etag":null,"topics":["android","fptn","fuck-putin","java","vpn"],"latest_commit_sha":null,"homepage":"https://storage.googleapis.com/fptn.org/index.html","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fptn-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-12T18:05:56.000Z","updated_at":"2026-05-26T13:25:57.000Z","dependencies_parsed_at":"2026-04-01T21:07:29.720Z","dependency_job_id":null,"html_url":"https://github.com/fptn-project/FptnClient-Android","commit_stats":null,"previous_names":["codeforfungunforhire/fptn-client","batchar2/fptnclient-android","fptn-project/fptnclient-android"],"tags_count":49,"template":false,"template_full_name":null,"purl":"pkg:github/fptn-project/FptnClient-Android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fptn-project%2FFptnClient-Android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fptn-project%2FFptnClient-Android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fptn-project%2FFptnClient-Android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fptn-project%2FFptnClient-Android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fptn-project","download_url":"https://codeload.github.com/fptn-project/FptnClient-Android/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fptn-project%2FFptnClient-Android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33722156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","fptn","fuck-putin","java","vpn"],"created_at":"2026-05-26T14:04:40.798Z","updated_at":"2026-05-31T07:01:56.674Z","avatar_url":"https://github.com/fptn-project.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Setup\n### Formatting\n- Install ktlint plugin\n- For automated formatting, Install Ktlint plugin to IDEA then you can go to `Settings -\u003e Tools -\u003e KtLint -\u003e Distract free`.\n- For manual formatting you can use `Command+Option+Enter`.\n\n### Wildcard imports\nFor disabling wildcards go to `Settings -\u003e Editor -\u003e Code style -\u003e Kotlin -\u003e Imports`\nChoose `Use single name import` for all cases and uncheck all checkboxes below.\n\n\n### Submodules\n\n```bash\ngit submodule update --init --recursive\n```\n\n### Install conan\n\n(For Windows, refer to these [instructions](https://github.com/batchar2/fptn/tree/master/deploy/windows) to install all required dependencies.)\n\n\n```bash\npip install conan numpy\n```\n\n\n\n```bash\nsudo apt install clang\n```\n\nCreate profile, get your conan home path\n\n```bash\nconan config home\n```\n\n```bash\nconan profile detect -f\n```\n\nGo to the following path and open the profiles folder.\nFor example, on my system, the path is:\n`~/.conan2/profiles`\n\nThen, create a file named `android-studio` with the following content:\n\n```bash\ninclude(default)\n\n[settings]\nos=Android\nos.api_level=28\ncompiler=clang\ncompiler.version=20\ncompiler.libcxx=c++_static\ncompiler.cppstd=17\n\n[tool_requires]\n*: android-ndk/r28b\n```\n[Hack] If above config doesn't help, install ndk 29.0.13599879 and point it out in 3 places:\n  - app/build.gradle.kts in android section, for example\n    ```android {\n        ...\n        ndkVersion = \"28.1.13356709\"\n        ...\n    ```\n  - local.properties\n    ```\n        ndk.dir=/Users/\u003cuser-name\u003e/Library/Android/sdk/ndk/28.1.13356709\n    ```\n  - ~/.conan2/profiles/android-studio in conf section\n    ```\n        ...\n        [conf]\n        tools.android:ndk_path=/Users/ddeviatilov/Library/Android/sdk/ndk/28.1.13356709\n        ...\n    ```\n\n\n## Ktlint formatting\nCheck: `./gradlew ktlintCheck`\n\nFormat: `./gradlew ktlintFormat`\n\n## Detekt check\nCheck: `./gradlew detektCheck`\n\n## Dependency soring check\nSort: `./gradlew sortDependencies`\n\nCheck: `./gradlew checkSortDependencies`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffptn-project%2Ffptnclient-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffptn-project%2Ffptnclient-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffptn-project%2Ffptnclient-android/lists"}