{"id":36420847,"url":"https://github.com/zeoflow/parcelled","last_synced_at":"2026-01-11T17:34:40.566Z","repository":{"id":52683461,"uuid":"348744417","full_name":"zeoflow/parcelled","owner":"zeoflow","description":"A fast annotation processor that auto-generates the Parcelable methods without writing them.","archived":false,"fork":false,"pushed_at":"2021-04-21T07:49:22.000Z","size":225,"stargazers_count":15,"open_issues_count":7,"forks_count":9,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-05-20T20:07:21.191Z","etag":null,"topics":["android-library","annotation-processor","kapt","parcellable","parcelled","parcelled-compiler","parcelled-library","parcelled-runtime","zeoflow","zeoflow-library"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zeoflow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["TeodorHMX1"]}},"created_at":"2021-03-17T14:42:20.000Z","updated_at":"2024-05-20T20:07:21.192Z","dependencies_parsed_at":"2022-08-21T16:00:34.819Z","dependency_job_id":null,"html_url":"https://github.com/zeoflow/parcelled","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/zeoflow/parcelled","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fparcelled","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fparcelled/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fparcelled/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fparcelled/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeoflow","download_url":"https://codeload.github.com/zeoflow/parcelled/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fparcelled/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28315879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: 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":["android-library","annotation-processor","kapt","parcellable","parcelled","parcelled-compiler","parcelled-library","parcelled-runtime","zeoflow","zeoflow-library"],"created_at":"2026-01-11T17:34:39.979Z","updated_at":"2026-01-11T17:34:40.559Z","avatar_url":"https://github.com/zeoflow.png","language":"Java","funding_links":["https://github.com/sponsors/TeodorHMX1"],"categories":[],"sub_categories":[],"readme":"# Parcelled - Android Library\n\n## Intro\nA fast annotation processor that auto-generates the Parcelable methods without writing them.\n\n## Getting Started\nFor information on how to get started Parcelled, take a look at our [Getting Started](docs/getting-started.md) guide.\n\n## Submitting Bugs or Feature Requests\nBugs or feature requests should be submitted at our [GitHub Issues section](https://github.com/zeoflow/parcelled/issues).\n\n## How does it work?\n### 1. Depend on our library\n\nParcelled for Android is available through Google's Maven Repository.\nTo use it:\n\n1.  Open the `build.gradle` file for your application.\n2.  Make sure that the `repositories` section includes Google's Maven Repository\n    `google()`. For example:\n```groovy\nallprojects {\n    repositories {\n        google()\n        jcenter()\n    }\n}\n```\n\n3.  Add the library to the `dependencies` section:\n```groovy\ndependencies {\n    // ...\n\n    // parcelled version\n    def parcelled_version = \"1.0.0\"\n\n    // Java Project\n    implementation(\"com.zeoflow:parcelled-runtime:$parcelled_version\")\n    annotationProcessor(\"com.zeoflow:parcelled-compiler:$parcelled_version\")\n\n    // Kotlin Project\n    implementation(\"com.zeoflow:parcelled-runtime:$parcelled_version\")\n    kapt(\"com.zeoflow:parcelled-compiler:$parcelled_version\")\n\n    // ...\n}\n```\n\n### 2. Usage\n#### 2.1 Import\n```java\nimport com.zeoflow.parcelled.Default;\nimport com.zeoflow.parcelled.Parcelled;\nimport com.zeoflow.parcelled.ParcelledAdapter;\nimport com.zeoflow.parcelled.ParcelledVersion;\n```\n\n#### 2.2 Class Declaration\n```java\n@Parcelled(version = 1)\npublic abstract class CustomBean implements Parcelable {\n\n    @Nullable\n    @Default(code = \"null\")\n    public String firstName;\n\n    @ParcelledVersion(after = 1, before = 2)\n    @Nullable\n    public String lastName;\n\n    @ParcelledAdapter(DateTypeAdapter.class)\n    @ParcelledVersion(before = 1)\n    @Default(code = \"new Date()\")\n    public Date birthday;\n\n    public static CustomBean create(\n      @NonNull String firstName,\n      @NonNull String lastName,\n      @NonNull Date birthday\n    ) {\n        return new Parcelled_Person(firstName, lastName, birthday);\n    }\n}\n```\n    \n## License\n    Copyright 2020 ZeoFlow\n    \n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n    \n      http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n## 🏆 Contributors 🏆\n\n\u003c!-- ZEOBOT-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003cp float=\"left\"\u003e\n\u003ca href=\"docs/contributors.md#pushpin-teodor-g-teodorhmx1\"\u003e\u003cimg width=\"100\" src=\"https://avatars.githubusercontent.com/u/22307006?v=4\" hspace=5 title='Teodor G. (@TeodorHMX1) - click for details about the contributions'\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ZEOBOT-LIST:END --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fparcelled","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeoflow%2Fparcelled","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fparcelled/lists"}