{"id":50877269,"url":"https://github.com/tobibur/camshop-ocr","last_synced_at":"2026-06-15T11:02:07.461Z","repository":{"id":128024311,"uuid":"150726923","full_name":"Tobibur/CamShop-ocr","owner":"Tobibur","description":"AI-powered Android app that reads product names from photos using ML Kit OCR and searches Flipkart instantly — no typing needed.","archived":false,"fork":false,"pushed_at":"2026-02-18T05:16:52.000Z","size":1995,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-18T10:20:24.650Z","etag":null,"topics":["kotlin","machine-learning","mlkit","ocr","ocr-android"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/Tobibur.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":"2018-09-28T10:56:01.000Z","updated_at":"2026-02-18T07:31:56.000Z","dependencies_parsed_at":"2023-05-29T04:45:23.128Z","dependency_job_id":null,"html_url":"https://github.com/Tobibur/CamShop-ocr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Tobibur/CamShop-ocr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tobibur%2FCamShop-ocr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tobibur%2FCamShop-ocr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tobibur%2FCamShop-ocr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tobibur%2FCamShop-ocr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tobibur","download_url":"https://codeload.github.com/Tobibur/CamShop-ocr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tobibur%2FCamShop-ocr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34357285,"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-15T02:00:07.085Z","response_time":63,"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":["kotlin","machine-learning","mlkit","ocr","ocr-android"],"created_at":"2026-06-15T11:02:06.727Z","updated_at":"2026-06-15T11:02:07.452Z","avatar_url":"https://github.com/Tobibur.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CamShop OCR\n\nAn Android app that lets you snap a photo of any product and instantly search for it online — no typing required. Powered by [Firebase ML Kit Text Recognition](https://firebase.google.com/docs/ml-kit/recognize-text).\n\n## Screenshots\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"/images/1.png\" width=\"160\"/\u003e\n  \u003cimg src=\"/images/2.png\" width=\"160\"/\u003e\n  \u003cimg src=\"/images/3.png\" width=\"160\"/\u003e\n  \u003cimg src=\"/images/4.png\" width=\"160\"/\u003e\n  \u003cimg src=\"/images/5.png\" width=\"160\"/\u003e\n\u003c/p\u003e\n\n## How It Works\n\n1. **Capture** — Take a photo of a product label or text using your device camera\n2. **Detect** — Firebase ML Kit's on-device OCR extracts text from the image\n3. **Search** — Tap the search button to find the product on Flipkart instantly\n\n## Tech Stack\n\n| Component | Technology |\n|-----------|------------|\n| Language | Kotlin |\n| Min SDK | 16 (Android 4.1) |\n| Target SDK | 28 (Android 9.0) |\n| OCR Engine | Firebase ML Vision 17.0.0 |\n| UI | Android Support Library, ConstraintLayout |\n| Utilities | Anko Commons |\n\n## Getting Started\n\n### Prerequisites\n\n- Android Studio 3.2+\n- A Firebase project with ML Kit enabled\n\n### Firebase Setup\n\n1. Go to the [Firebase Console](https://console.firebase.google.com/) and create a new project (or use an existing one)\n2. Add an Android app with the package name `com.tobibur.camshop`\n3. Download the `google-services.json` file\n4. Place it in the `app/` directory\n\n### Build \u0026 Run\n\n```bash\n# Clone the repository\ngit clone https://github.com/Tobibur/CamShop-ocr.git\ncd CamShop-ocr\n\n# Build the debug APK\n./gradlew assembleDebug\n\n# Install on a connected device\n./gradlew installDebug\n```\n\n\u003e **Note:** A physical device with a camera is recommended. The emulator camera may not produce good OCR results.\n\n## Project Structure\n\n```\napp/src/main/java/com/tobibur/camshop/\n├── MainActivity.kt              # Entry point, hosts MainFragment\n├── ResultActivity.kt            # Displays detected text + Flipkart search\n└── ui/main/\n    └── MainFragment.kt          # Camera capture + Firebase ML Kit OCR\n```\n\n## Roadmap\n\n- [x] Camera capture\n- [x] Text detection via Firebase ML Kit\n- [x] Product search on Flipkart\n- [ ] Improved UI/UX\n- [ ] Support for multiple shopping websites\n\n## License\n\nThis project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.\n\nCopyright (c) 2018 Tobibur Rahman\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobibur%2Fcamshop-ocr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftobibur%2Fcamshop-ocr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobibur%2Fcamshop-ocr/lists"}