{"id":50428730,"url":"https://github.com/cslrfid/cs710s-android","last_synced_at":"2026-05-31T12:30:17.341Z","repository":{"id":360084093,"uuid":"1246368119","full_name":"cslrfid/cs710s-android","owner":"cslrfid","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-24T22:21:56.000Z","size":338558,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T00:24:35.537Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/cslrfid.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":"2026-05-22T06:08:35.000Z","updated_at":"2026-05-24T22:21:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cslrfid/cs710s-android","commit_stats":null,"previous_names":["cslrfid/cs710s-android"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cslrfid/cs710s-android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cslrfid%2Fcs710s-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cslrfid%2Fcs710s-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cslrfid%2Fcs710s-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cslrfid%2Fcs710s-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cslrfid","download_url":"https://codeload.github.com/cslrfid/cs710s-android/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cslrfid%2Fcs710s-android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33731998,"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-05-31T02:00:06.040Z","response_time":95,"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-05-31T12:30:16.613Z","updated_at":"2026-05-31T12:30:17.332Z","avatar_url":"https://github.com/cslrfid.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CS710S-Android — JitPack Library Distribution\n\n[![Platform](https://img.shields.io/badge/platform-Android-3DDC84?logo=android\u0026logoColor=white)](https://www.android.com/)\n[![Language](https://img.shields.io/badge/language-Java-007396?logo=openjdk\u0026logoColor=white)](https://www.java.com/)\n[![License](https://img.shields.io/github/license/cslrfid/cs710s-android)](LICENSE)\n[![Release](https://img.shields.io/github/v/tag/cslrfid/cs710s-android?label=release\u0026sort=semver)](https://github.com/cslrfid/cs710s-android/tags)\n[![JitPack](https://jitpack.io/v/cslrfid/cs710s-android.svg)](https://jitpack.io/#cslrfid/cs710s-android)\n\nThis repository publishes three Android libraries for the CS710S/CS108 RFID readers via [JitPack](https://jitpack.io), plus a quick-start demo app you can build locally.\n\n[Product information](https://www.convergence.com.hk/cs710s/)\n\n## Published libraries\n\n| Library | JitPack coordinate | Purpose |\n|---|---|---|\n| `csl-rfid-android-sdk` | `com.github.cslrfid.cs710s-android:csl-rfid-android-sdk:{TAG}` | Callback-based wrapper SDK — recommended entry point |\n| `cslibrary4a` | `com.github.cslrfid.cs710s-android:cslibrary4a:{TAG}` | Core BLE/USB protocol and reader-chip drivers |\n| `epctagcoder` | `com.github.cslrfid.cs710s-android:epctagcoder:{TAG}` | EPC tag encode/decode utility |\n\nDependency chain: `csl-rfid-android-sdk` → `cslibrary4a` → `epctagcoder`. Depending on any one library pulls in its transitive deps automatically.\n\n## Consuming the libraries\n\n**`settings.gradle`** (Gradle 7+):\n\n```groovy\ndependencyResolutionManagement {\n    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)\n    repositories {\n        google()\n        mavenCentral()\n        maven { url 'https://jitpack.io' }\n    }\n}\n```\n\n**`app/build.gradle`**:\n\n```groovy\ndependencies {\n    // Recommended: wrapper SDK — transitively brings in cslibrary4a and epctagcoder\n    implementation 'com.github.cslrfid.cs710s-android:csl-rfid-android-sdk:1.0.0'\n\n    // Or, core SDK only (no wrapper) — still brings in epctagcoder\n    // implementation 'com.github.cslrfid.cs710s-android:cslibrary4a:1.0.0'\n}\n```\n\n## Demo app — `cs710aquickstart`\n\n![CS710S QuickStart screens](images/cs710s-android.png)\n\nA minimal Android demo (MVVM, ViewModel-based) that exercises BLE scan, connect, inventory, Geiger search, battery monitoring, and hardware-trigger support against the wrapper SDK.\n\n```bash\n./gradlew :cs710aquickstart:assembleDebug          # Debug APK\n./gradlew :cs710aquickstart:installDebug           # Install to a connected device\n```\n\nSee `cs710aquickstart/README.md` for the full walkthrough.\n\n## Prerequisites for local development\n\n- Android Studio\n- Android SDK API Level 36 (compileSdk/targetSdk), minSdk 26\n- JDK 17\n- macOS / Linux / Windows\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcslrfid%2Fcs710s-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcslrfid%2Fcs710s-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcslrfid%2Fcs710s-android/lists"}