{"id":49830812,"url":"https://github.com/swifdroid/droid","last_synced_at":"2026-05-13T20:48:56.878Z","repository":{"id":294253524,"uuid":"597414810","full_name":"swifdroid/droid","owner":"swifdroid","description":"✨ Swift for Android fully native app development framework","archived":false,"fork":false,"pushed_at":"2026-01-20T03:29:10.000Z","size":1652,"stargazers_count":211,"open_issues_count":2,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-05-13T20:48:50.005Z","etag":null,"topics":["android","jni","swift","ui"],"latest_commit_sha":null,"homepage":"https://docs.swifdroid.com/app/","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/swifdroid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-02-04T13:34:01.000Z","updated_at":"2026-05-09T01:16:12.000Z","dependencies_parsed_at":"2025-05-19T15:58:31.771Z","dependency_job_id":"afbbacce-5a04-4e3f-81cb-f34df4e47941","html_url":"https://github.com/swifdroid/droid","commit_stats":null,"previous_names":["swifdroid/droid"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/swifdroid/droid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swifdroid%2Fdroid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swifdroid%2Fdroid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swifdroid%2Fdroid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swifdroid%2Fdroid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swifdroid","download_url":"https://codeload.github.com/swifdroid/droid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swifdroid%2Fdroid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32999522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: 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":["android","jni","swift","ui"],"created_at":"2026-05-13T20:48:56.267Z","updated_at":"2026-05-13T20:48:56.873Z","avatar_url":"https://github.com/swifdroid.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg width=\"480\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/274c8464-6a21-4ffc-8c17-d18bb7bb4305\" /\u003e\n\u003c/p\u003e\n\n# Droid – Android Development in Swift\n\nDroid is a modern framework that lets you build native Android applications entirely in Swift – without touching XML, Java, or Kotlin.\n\nIf you love Swift’s expressiveness and want to bring it to the Android world, Droid is for you.\n\n## ✨ Why Droid?\n\n- **Pure Swift** — UI, manifest, lifecycle, and configuration in one language\n- **Declarative UI** — familiar, readable, and composable\n- **No XML** — ever\n- **Native Android** — not a web wrapper, not a transpiler\n- **One place for everything** — UI, manifest, Gradle dependencies\n\nDroid aims to make Android development feel as natural and elegant as modern Swift development.\n\n## 🧱 Declarative UI\n\nBuild Android UIs using clean, Swift-first APIs:\n\n```swift\nConstraintLayout {\n    VStack {\n        TextView(\"Hello from Swift!\")\n            .width(.matchParent)\n            .height(.wrapContent)\n            .textColor(.green)\n        MaterialButton(\"Tap Me\")\n            .onClick {\n                print(\"Button tapped!\")\n            }\n    }\n    .centerVertical()\n    .leftToParent()\n    .rightToParent()\n}\n```\n\nSimple. Declarative. Beautiful.\n\n## 📄 Manifest in Swift\n\nEven the Android manifest is written in Swift:\n\n```swift\n@main\npublic final class App: DroidApp {\n\t@AppBuilder public override var body: Content {\n        Lifecycle.didFinishLaunching{\n\t\t\tApp.setLogLevel(.debug)\n\t\t\t// App.setInnerLogLevel(.trace)\n\t\t\tLog.i(\"🚀 didFinishLaunching\")\n\t\t}\n\t\tManifest\n\t\t\t// .usesPermissions(.camera)\n\t\t\t// .usesFeatures(.hardwareCamera)\n\t\t\t.application {\n\t\t\t\t.allowBackup()\n\t\t\t\t.icon(\"@mipmap/ic_launcher\")\n\t\t\t\t.roundIcon(\"@mipmap/ic_launcher_round\")\n\t\t\t\t.label(\"My app\")\n\t\t\t\t.theme(.material3DayNightNoActionBar)\n\t\t\t\t.activities(\n\t\t\t\t\tMainActivity.self\n\t\t\t\t)\n\t\t\t\t.fragments(\n\t\t\t\t\tHomeFragment.self,\n\t\t\t\t\tDashboardFragment.self,\n\t\t\t\t\tNotificationsFragment.self\n\t\t\t\t)\n\t\t\t}\n    }\n}\n```\nNo context switching. No duplicated configuration. No hidden magic.\n\n## 📚 Documentation\n\n📖 **Docs**: http://docs.swifdroid.com/app/\n\nThe documentation is **well written and actively evolving**.  \nAndroid is massive, and while not everything is documented yet, existing guides are carefully crafted and expanded continuously.\n\nYou can **start building today** with **[Swift Stream IDE](https://swift.stream)**.\n\n## 🧩 What’s Supported\n\n- Classic Android widgets\n- AndroidX\n- Material Design\n- Flexbox layouts\n\n## 🚧 Project Status\n\nDroid is under **active development** and evolving rapidly.  \nAPIs may grow and improve, but the core vision is stable and clear.\n\nFeedback is not only welcome – it’s encouraged.\n\n## 🌍 Community \u0026 Feedback\n\n- 🐞 Issues: https://github.com/swifdroid/droid/issues\n- 💬 Discord: https://discord.com/invite/Wh3n86ttRB\n- 📢 Telegram: https://t.me/+t9zXkfjoKNNlY2Ri\n\nIf the project resonates with you, please consider giving it a ⭐️\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswifdroid%2Fdroid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswifdroid%2Fdroid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswifdroid%2Fdroid/lists"}