{"id":29876749,"url":"https://github.com/paymentwall/android-gamepay-sdk-core-ui","last_synced_at":"2026-02-06T08:37:44.293Z","repository":{"id":306043658,"uuid":"1024743069","full_name":"paymentwall/android-gamepay-sdk-core-ui","owner":"paymentwall","description":"Design system and core UI elements for Android GamePaySDK","archived":false,"fork":false,"pushed_at":"2025-09-30T05:25:58.000Z","size":5178,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-30T06:22:33.720Z","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/paymentwall.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":"2025-07-23T07:19:10.000Z","updated_at":"2025-09-30T05:25:23.000Z","dependencies_parsed_at":"2025-07-23T11:26:38.107Z","dependency_job_id":"850a3823-3c85-4c7d-bd27-60c1020816f1","html_url":"https://github.com/paymentwall/android-gamepay-sdk-core-ui","commit_stats":null,"previous_names":["paymentwall/android-gamepay-sdk-core-ui"],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/paymentwall/android-gamepay-sdk-core-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paymentwall%2Fandroid-gamepay-sdk-core-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paymentwall%2Fandroid-gamepay-sdk-core-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paymentwall%2Fandroid-gamepay-sdk-core-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paymentwall%2Fandroid-gamepay-sdk-core-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paymentwall","download_url":"https://codeload.github.com/paymentwall/android-gamepay-sdk-core-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paymentwall%2Fandroid-gamepay-sdk-core-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29155538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T07:18:23.844Z","status":"ssl_error","status_checked_at":"2026-02-06T07:13:32.659Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-07-31T04:20:51.136Z","updated_at":"2026-02-06T08:37:44.289Z","avatar_url":"https://github.com/paymentwall.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GamePay CoreUI SDK\n\n`gpcoreui` is an Android library providing reusable payment UI components and validation helpers. The code is written in Java with all classes prefixed by `GP` under the package `com.terminal3.gpcoreui`.\n\n## Modules\n- **gpcoreui** – library module containing the UI widgets and utilities.\n- **app** – sample application demonstrating usage of the components.\n\n## Installation\nInclude the module in your `settings.gradle` and add a dependency in your app module:\n\n```gradle\nimplementation project(\":gpcoreui\")\n```\n\nThe library targets `minSdk 24` and uses `AppCompat` for compatibility.\n\n## Usage\nAdd the desired components in your XML layout. Example card form:\n\n```xml\n\u003ccom.terminal3.gpcoreui.components.GPCardNumberField\n    android:id=\"@+id/ip_card_number\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    app:labelText=\"Card Number\" /\u003e\n\n\u003ccom.terminal3.gpcoreui.components.GPCardExpiryDateField\n    android:id=\"@+id/ip_expiry_date\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    app:labelText=\"Exp. Date\" /\u003e\n\n\u003ccom.terminal3.gpcoreui.components.GPCardCVVField\n    android:id=\"@+id/ip_cvv\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    app:labelText=\"CVV\" /\u003e\n```\n\nTo build forms dynamically, use `GPDynamicForm`:\n\n```java\nGPDynamicForm form = findViewById(R.id.dynamicForm);\nform.setOptions(serverOptions);\nMap\u003cString, String\u003e values = form.getValues();\n// Or form.getAllValues() to include hidden fields\n```\n\nSee [`docs/COMPONENTS.md`](docs/COMPONENTS.md) for an index of available widgets. Each component has its own document describing parameters and usage.\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaymentwall%2Fandroid-gamepay-sdk-core-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaymentwall%2Fandroid-gamepay-sdk-core-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaymentwall%2Fandroid-gamepay-sdk-core-ui/lists"}