{"id":50058243,"url":"https://github.com/switchifyapp/switchify","last_synced_at":"2026-05-24T21:00:56.166Z","repository":{"id":357386808,"uuid":"526565829","full_name":"switchifyapp/Switchify","owner":"switchifyapp","description":"An Android accessibility service that enables device control through adaptive switches, providing cursor-based and item scanning navigation for users with physical disabilities.","archived":false,"fork":false,"pushed_at":"2026-05-21T19:19:29.000Z","size":17077,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-05-21T22:58:43.945Z","etag":null,"topics":["accessibility","android","disabilities","disability","disability-assistance","joystick","joystick-control","kotlin","kotlin-android","switch-access"],"latest_commit_sha":null,"homepage":"https://switchifyapp.com/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/switchifyapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"enaboapps"}},"created_at":"2022-08-19T10:39:57.000Z","updated_at":"2026-05-21T19:20:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/switchifyapp/Switchify","commit_stats":null,"previous_names":["switchifyapp/switchify"],"tags_count":481,"template":false,"template_full_name":null,"purl":"pkg:github/switchifyapp/Switchify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/switchifyapp%2FSwitchify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/switchifyapp%2FSwitchify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/switchifyapp%2FSwitchify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/switchifyapp%2FSwitchify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/switchifyapp","download_url":"https://codeload.github.com/switchifyapp/Switchify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/switchifyapp%2FSwitchify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33450402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T19:21:36.376Z","status":"ssl_error","status_checked_at":"2026-05-24T19:21:10.562Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["accessibility","android","disabilities","disability","disability-assistance","joystick","joystick-control","kotlin","kotlin-android","switch-access"],"created_at":"2026-05-21T16:04:56.020Z","updated_at":"2026-05-24T21:00:56.161Z","avatar_url":"https://github.com/switchifyapp.png","language":"Kotlin","funding_links":["https://github.com/sponsors/enaboapps"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"assets/logo.webp\" alt=\"Switchify logo\" width=\"160\" /\u003e\n\u003c/p\u003e\n\n# Switchify\n\nAn Android accessibility service that enables device control through adaptive switches, providing cursor-based and item scanning navigation for users with physical disabilities.\n\n## Requirements\n\n- Android 10 (API level 29) and above\n- Android Studio (latest version recommended)\n\n## Setup\n\n### 1. Clone the repository\n```bash\ngit clone https://github.com/switchifyapp/Switchify.git\ncd Switchify\n```\n\n### 2. Configure local.properties\nCreate a `local.properties` file in the project root with the following:\n\n```properties\n# Path to your Android SDK\nsdk.dir=/path/to/your/Android/Sdk\n\n# RevenueCat public API key (obtain from project owner)\nrevenuecat.publicKey=\u003cask_for_key\u003e\n\n# Timberlogs API key (obtain from project owner)\ntimberlogs.apiKey=\u003cask_for_key\u003e\n\n# Supabase configuration (obtain from project owner)\nsupabase.projectUrl=\u003cask_for_url\u003e\nsupabase.publishableKey=\u003cask_for_key\u003e\n\n# Google Sign-In web client ID (obtain from project owner)\ngoogle.webClientId=\u003cask_for_id\u003e\n```\n\nAll five keys are required — the build fails with a `Missing config` error if any are absent. CI builds read the same values from `REVENUECAT_PUBLIC_KEY`, `TIMBERLOGS_API_KEY`, `SUPABASE_URL`, `SUPABASE_ANON_KEY`, and `GOOGLE_WEB_CLIENT_ID` environment variables.\n\n### 3. Build and run\n```bash\n./gradlew build\n```\n\n## Contributing\n\n1. Fork this repository\n2. Clone your forked repository\n3. Create a new branch (`git checkout -b feature/your-feature`)\n4. Make your changes\n5. Commit and push your changes\n6. Create a pull request\n\n### Commit messages\n\nUse Conventional Commits for concise messages:\n\n- Format: `type: subject`\n- Allowed `type`: feat, fix, docs, chore, refactor, perf, test, build, ci, style, revert\n\nEnable repo-provided hook to enforce the format:\n\n```bash\ngit config core.hooksPath .githooks\nchmod +x .githooks/commit-msg\n```\n\n## License\n\nSwitchify is licensed under the [GNU Affero General Public License v3.0](LICENSE) (AGPL-3.0).\n\nIn short: you are free to use, modify, and distribute Switchify, but any modifications or derivative works (including those made available over a network) must also be released under the AGPL-3.0 and include their full source code.\n\nCommercial licenses that exempt licensees from the AGPL copyleft obligations are available on request — contact \u003cowen@switchifyapp.com\u003e for details.\n\nCopyright (C) 2024-2026 Owen McGirr. Released under the AGPL-3.0.\n\n## Links\n\n- [Google Play Store](https://play.google.com/store/apps/details?id=com.enaboapps.switchify)\n- [switchifyapp.com](https://switchifyapp.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswitchifyapp%2Fswitchify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswitchifyapp%2Fswitchify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswitchifyapp%2Fswitchify/lists"}