{"id":50508561,"url":"https://github.com/swarnimcodes/nosave-chat","last_synced_at":"2026-06-02T18:02:17.258Z","repository":{"id":358878575,"uuid":"1243474771","full_name":"swarnimcodes/nosave-chat","owner":"swarnimcodes","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-19T13:46:53.000Z","size":108,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-19T14:44:12.817Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/swarnimcodes.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-19T11:27:18.000Z","updated_at":"2026-05-19T13:50:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/swarnimcodes/nosave-chat","commit_stats":null,"previous_names":["swarnimcodes/nosave-chat"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/swarnimcodes/nosave-chat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swarnimcodes%2Fnosave-chat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swarnimcodes%2Fnosave-chat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swarnimcodes%2Fnosave-chat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swarnimcodes%2Fnosave-chat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swarnimcodes","download_url":"https://codeload.github.com/swarnimcodes/nosave-chat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swarnimcodes%2Fnosave-chat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33833277,"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-06-02T02:00:07.132Z","response_time":109,"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":[],"created_at":"2026-06-02T18:02:16.672Z","updated_at":"2026-06-02T18:02:17.252Z","avatar_url":"https://github.com/swarnimcodes.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NoSave Chat\n\nNoSave Chat is a small Android app for starting chats without saving a phone number first. Enter a number with country code, then open it in WhatsApp, Telegram, or Signal.\n\nThe app is built with [Dioxus 0.7](https://dioxuslabs.com/) and Tailwind CSS.\n\n## Features\n\n- Open WhatsApp chats with `wa.me` links.\n- Open Telegram phone links.\n- Open Signal phone links.\n- Mobile-first Dioxus layout.\n- Catppuccin-inspired Tailwind theme.\n\n## Requirements\n\n- Rust\n- Dioxus CLI `0.7`\n- Android SDK, NDK, and emulator tooling\n- Tailwind CSS CLI\n\nUseful targets:\n\n```sh\nrustup target add aarch64-linux-android\nrustup target add x86_64-linux-android\n```\n\n## Development\n\nCommon commands:\n\n```sh\nmake serve\nmake android-build\nmake tailwind-watch\nmake install-apk TARGET=aarch64-linux-android\n```\n\nRun Tailwind in one terminal:\n\n```sh\nmake tailwind-watch\n```\n\nRun the Android app in another terminal:\n\n```sh\nmake serve\n```\n\nThe generated stylesheet is committed at `assets/tailwind.css` because automatic Tailwind generation through `dx serve --android` may not run consistently in this project.\n\n## Build\n\nBuild a release Android App Bundle for ARM64 phones:\n\n```sh\nmake android-release-bundle TARGET=aarch64-linux-android\n```\n\nBuild an APK for local install/testing:\n\n```sh\nmake android-apk-bundle TARGET=aarch64-linux-android\n```\n\nFor release APKs with automatic icon replacement:\n\n```sh\nmake android-release-build TARGET=aarch64-linux-android\n```\n\nRelease workflow rule:\n\n- Version in `Cargo.toml` is used for local `make release` artifact naming.\n- Git tag releases must use `v\u003cversion\u003e` and must exactly match `Cargo.toml`.\n- Example:\n\n```sh\ngit tag -a v1.2.3\ngit push origin v1.2.3\n```\n\nThis publishes `NoSaveChat-v1.2.3-aarch64-linux-android-release.apk`.\n\nFor x86_64 emulators, use:\n\n```sh\nmake android-apk-bundle TARGET=x86_64-linux-android\n```\n\n## Project Layout\n\n```text\nassets/\n  favicon.ico\n  tailwind.css\nsrc/\n  components/\n    hero.rs\n  views/\n    home.rs\n    layout.rs\n  main.rs\ntailwind.css\nCargo.toml\nDioxus.toml\n```\n\n## Notes\n\nThis app is currently mobile-only. It does not use Dioxus fullstack features. A future local history feature can be implemented with local device storage and does not require a backend.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswarnimcodes%2Fnosave-chat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswarnimcodes%2Fnosave-chat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswarnimcodes%2Fnosave-chat/lists"}