{"id":25216472,"url":"https://github.com/fekri8614/android-worker","last_synced_at":"2026-04-27T22:31:36.665Z","repository":{"id":274995014,"uuid":"924738509","full_name":"fekri8614/android-worker","owner":"fekri8614","description":"Android Worker Example","archived":false,"fork":false,"pushed_at":"2025-01-30T16:08:45.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T09:15:37.349Z","etag":null,"topics":["agpl","android","android-application","android-example","example","kotlin","kotlin-android","worker","worker-example","workers"],"latest_commit_sha":null,"homepage":"https://github.com/sonusurender/WorkManagerDemo","language":"Kotlin","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/fekri8614.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}},"created_at":"2025-01-30T15:13:48.000Z","updated_at":"2025-01-30T16:08:49.000Z","dependencies_parsed_at":"2025-01-30T16:43:47.768Z","dependency_job_id":null,"html_url":"https://github.com/fekri8614/android-worker","commit_stats":null,"previous_names":["fekri8614/android-worker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fekri8614/android-worker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fekri8614%2Fandroid-worker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fekri8614%2Fandroid-worker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fekri8614%2Fandroid-worker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fekri8614%2Fandroid-worker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fekri8614","download_url":"https://codeload.github.com/fekri8614/android-worker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fekri8614%2Fandroid-worker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32358509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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":["agpl","android","android-application","android-example","example","kotlin","kotlin-android","worker","worker-example","workers"],"created_at":"2025-02-10T19:18:16.299Z","updated_at":"2026-04-27T22:31:36.651Z","avatar_url":"https://github.com/fekri8614.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WorkManagerExample 🚀\n\nA hands-on Android project demonstrating the use of **WorkManager** for background tasks.\n\n![Android](https://img.shields.io/badge/Android-green?style=flat-square)\n![Kotlin](https://img.shields.io/badge/Kotlin-blue?style=flat-square)\n![WorkManager](https://img.shields.io/badge/WorkManager-orange?style=flat-square)\n\n---\n\n## 📖 Description\nThis project is an exercise to explore the capabilities of **WorkManager** in Android.  \nWorkManager is a powerful library for managing deferrable and guaranteed background tasks, even if the app is closed or the device restarts.\n\n### Features:\n- ✅ One-time tasks  \n- ✅ Periodic tasks  \n- ✅ Chained tasks  \n- ✅ Task constraints (e.g., network, charging)  \n\n---\n\n## 📦 Dependencies\nThis project uses the following dependencies, managed via `libs.versions.toml`:\n\n```toml\n[versions]\nagp = \"8.3.0\"\nkotlin = \"1.9.0\"\ncoreKtx = \"1.15.0\"\njunit = \"4.13.2\"\njunitVersion = \"1.1.5\"\nespressoCore = \"3.5.1\"\nlifecycleRuntimeKtx = \"2.8.7\"\nactivityCompose = \"1.8.0\"\ncomposeBom = \"2024.04.01\"\nwork = \"2.9.0\"\n\n[libraries]\n#...\nandroidx-lifecycle-runtime-ktx = { group = \"androidx.lifecycle\", name = \"lifecycle-runtime-ktx\", version.ref = \"lifecycleRuntimeKtx\" }\nandroidx-lifecycle-viewmodel-ktx = { group = \"androidx.lifecycle\", name = \"lifecycle-viewmodel-ktx\", version.ref = \"lifecycleRuntimeKtx\" }\nandroidx-lifecycle-runtime-compose = { group = \"androidx.lifecycle\", name = \"lifecycle-runtime-compose\", version.ref = \"lifecycleRuntimeKtx\" }\nandroidx-work-runtime = { group = \"androidx.work\", name = \"work-runtime-ktx\", version.ref = \"work\" }\n#...\n```\n\n📂 You can view the full `libs.versions.toml` file [here](https://github.com/fekri8614/android-worker/blob/master/gradle/libs.versions.toml).\n\n---\n\n## 🛠️ Setup\n\nTo run this project your own, follow these steps:\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/fekri8614/android-worker.git\n   ```\n2. Open the project in **Android Studio**.\n3. Sync the project with Gradle files.\n4. Build and run the app on an emulator or physical device.\n\n---\n\n## 🤝 Contributing\n\nContributions are welcome! If you'd like to contribute, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch:\n   ```sh\n   git checkout -b feature/YourFeatureName\n   ```\n3. Commit your changes:\n   ```sh\n   git commit -m \"Add some feature\"\n   ```\n4. Push to the branch:\n   ```sh\n   git push origin feature/YourFeatureName\n   ```\n5. Open a **Pull Request**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffekri8614%2Fandroid-worker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffekri8614%2Fandroid-worker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffekri8614%2Fandroid-worker/lists"}