{"id":21006391,"url":"https://github.com/eyedol/raiburari","last_synced_at":"2026-04-27T09:30:56.148Z","repository":{"id":136300289,"uuid":"46766701","full_name":"eyedol/raiburari","owner":"eyedol","description":"[Deprecated] In favor of Android Architecture Components","archived":false,"fork":false,"pushed_at":"2023-12-15T17:37:07.000Z","size":800,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-29T02:32:27.257Z","etag":null,"topics":["android","android-sdk","annotations","architecture","clean-architecture","framework","processor","testing"],"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/eyedol.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2015-11-24T04:24:38.000Z","updated_at":"2018-01-19T10:13:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"91d2fef2-155e-48ab-a97b-b0f1cafa97b3","html_url":"https://github.com/eyedol/raiburari","commit_stats":null,"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/eyedol/raiburari","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eyedol%2Fraiburari","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eyedol%2Fraiburari/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eyedol%2Fraiburari/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eyedol%2Fraiburari/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eyedol","download_url":"https://codeload.github.com/eyedol/raiburari/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eyedol%2Fraiburari/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32331305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":["android","android-sdk","annotations","architecture","clean-architecture","framework","processor","testing"],"created_at":"2024-11-19T08:51:08.817Z","updated_at":"2026-04-27T09:30:56.097Z","avatar_url":"https://github.com/eyedol.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Raiburari [ ![Download](https://api.bintray.com/packages/eyedol/maven/Raiburari/images/download.svg) ](https://bintray.com/eyedol/maven/Raiburari/_latestVersion)\n=========\n\nThis is a reusable Android SDK for writing Android apps. The need came as a result of repeatedly constructing the same directory structure and base classes when starting a new Android project.\n\nModules\n=======\n\nThe SDK comes with three main modules.\n\nraiburari-annotation\n--------------------\n\nAnnotations for the SDK. \n\nComes with two annotations. `@TransformEntity` - for class and `@Transform` for fields.\n\nraiburari-processor\n-------------------\nA processor for the annotations.\n\nThe SDK comes with a multi-layer Models or Entities. This necessitates the need to have an object mapper to map / transform from one layer's entity to another layer's model. Writing this transformer or object mapper class can be a bit boring. This annotation processor aims to automate the process by providing a set of annotations you can apply to a model class and fields so it generates the source for the transformer class for you.\n\nraiburari\n---------\nMain module that contains all the base classes, custom views, and reusable components.\n\n\nSetup\n=====\nYou can use [gradleplease](http://gradleplease.appspot.com/#raiburari) to find the latest.\n\nGradle\n------\n```groovy\n   dependencies {\n       compile 'com.addhen.android:raiburari-annotation:\u003clatest_version\u003e'\n       compile 'com.addhen.android:raiburari-processor:\u003clatest_version\u003e'\n       compile 'com.addhen.android:raiburari:\u003clatest_version\u003e'\n   }\n```\n\nMaven\n-----\n```groovy\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.addhen.android\u003c/groupId\u003e\n  \u003cartifactId\u003eraiburari-annotations\u003c/artifactId\u003e\n  \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.addhen.android\u003c/groupId\u003e\n  \u003cartifactId\u003eraiburari-processor\u003c/artifactId\u003e\n  \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.addhen.android\u003c/groupId\u003e\n  \u003cartifactId\u003eraiburari\u003c/artifactId\u003e\n  \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nCredits\n--------\nThis is heavily based on other people's work. Here includes:\n\n1. Fernando Cejas' [Android clean architecture][1] example.\n2. Uncle bob's [clean architecture blog][2] post. \n3. Hannes Dorfmann's [annotation processing 101][3] blog post.\n4. Chris Banes' [Cheese Square][4] Android app.\n5. Jake Wharton's [ButterKinife][5].\n6. Kaushik Gopal's [RxJava Android][6] samples.\n\n\nLicense\n--------\n\n    Copyright 2015 - 2016 Henry Addo\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\n[1]: https://github.com/android10/Android-CleanArchitecture/\n[2]: http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-architecture.html\n[3]: http://hannesdorfmann.com/annotation-processing/annotationprocessing101\n[4]: https://github.com/chrisbanes/cheesesquare\n[5]: https://github.com/JakeWharton/butterknife\n[6]: https://github.com/kaushikgopal/RxJava-Android-Samples","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feyedol%2Fraiburari","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feyedol%2Fraiburari","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feyedol%2Fraiburari/lists"}