{"id":21082830,"url":"https://github.com/jxareas/techhub","last_synced_at":"2025-10-14T05:33:27.480Z","repository":{"id":41056297,"uuid":"503617148","full_name":"jxareas/TechHub","owner":"jxareas","description":"Educational App made with Retrofit, Coroutines, Navigation Component, Room, Dagger Hilt, Flow \u0026 Material Motion Animations. ","archived":false,"fork":false,"pushed_at":"2022-07-19T06:20:44.000Z","size":51655,"stargazers_count":43,"open_issues_count":0,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-16T09:42:52.453Z","etag":null,"topics":["android","android-animations","android-development","dagger-hilt","dark-mode","jetbrains","kotlin","kotlin-coroutines","kotlin-flow","kotlin-serialization","learn","material-design","material-motion","mvvm-android","mvvm-architecture","navigation-component","okhttp3","retrofit","room"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/jxareas.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}},"created_at":"2022-06-15T04:43:15.000Z","updated_at":"2024-08-04T15:10:37.000Z","dependencies_parsed_at":"2022-07-14T07:00:32.465Z","dependency_job_id":null,"html_url":"https://github.com/jxareas/TechHub","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jxareas/TechHub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jxareas%2FTechHub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jxareas%2FTechHub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jxareas%2FTechHub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jxareas%2FTechHub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jxareas","download_url":"https://codeload.github.com/jxareas/TechHub/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jxareas%2FTechHub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018009,"owners_count":26086235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"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-animations","android-development","dagger-hilt","dark-mode","jetbrains","kotlin","kotlin-coroutines","kotlin-flow","kotlin-serialization","learn","material-design","material-motion","mvvm-android","mvvm-architecture","navigation-component","okhttp3","retrofit","room"],"created_at":"2024-11-19T20:15:25.215Z","updated_at":"2025-10-14T05:33:27.452Z","avatar_url":"https://github.com/jxareas.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TechHub\n\nTechHub is a sample educational app that provides courses for people who want to learn new skills in mostly tech-related areas.\n\nThe goal of this project is to practice \u0026 demonstrate the use of some Modern Android Development Practices,\nMaterial Design Theming \u0026 Android Animations.\n\n## 🕹 Animations 🕹\n\nThis app uses shared element container transforms to create a visible connection between two UI elements and represent\nparent-child relationships between fragment transitions.\n\nList Item\t|\tCard Item\t|\tSwipe to Delete | Bouncing Text\t|\n:------:|:---------------------:|:-----------------------------:|:-------------:|\n![](https://github.com/jxareas/TechHub/blob/master/assets/animations/anim_list_item.gif?raw=true)  |  ![](https://github.com/jxareas/TechHub/blob/master/assets/animations/anim_card_item.gif?raw=true)  |  ![](https://github.com/jxareas/TechHub/blob/master/assets/animations/anim_swipe.gif?raw=true)  |  ![](https://github.com/jxareas/TechHub/blob/master/assets/animations/anim_text.gif?raw=true)\n\n\n## 🛠 Architecture 🛠\n\nThe application complies with the following recommended best practices for building robust, high-quality apps.\n\n* **Single Activity Architecture**: One single activity and several fragments.\n* **MVVM**: MVVM based architecture, using a local database as a Single Source of Truth.\n* **SOLID**: Software design principles intended to make object-oriented software more understandable, flexible and maintainable.\n* **Android Architecture Components**:  libraries part of Android Jetpack to give a robust design, testable and maintainable to modern applications.\n\n![](https://camo.githubusercontent.com/e1459518188f17c1fa6a30570ca5d21530975f9e/68747470733a2f2f646576656c6f7065722e616e64726f69642e636f6d2f746f7069632f6c69627261726965732f6172636869746563747572652f696d616765732f66696e616c2d6172636869746563747572652e706e67)\n\n## 🦾 Tech Stack 🦾\n\nThis project takes advantage of many popular libraries and tools in the Android ecosystem:\n\n* **ROOM**: Persistence Library that provides an abstraction layer over SQLLite to allow for a more robust database access.\n* **Lifecycle**: Perform actions in response to a change in the lifecycle status of another component.\n* **ViewModel**: Designed to manage and store UI related data in a lifecycle conscious way.\n* **LiveData**: A lifecycle-aware observable data holder class, that respects the lifecycle of other app components.\n* **Navigation**: Implement navigation and transactions between fragments.\n* **Kotlin Coroutines**: Managing background threads with simplified code and reducing needs for callbacks.\n* **Kotlin Flow**: Cold asynchronous data stream that sequentially emits values\n* **Kotlin Serialization**: Converts data used by an application to a format that can be transferred over a network or stored in a database or a file.\n* **Dagger Hilt**: A fully static, compile-time dependency injection framework for both Java and Android.\n* **Retrofit**: A type-safe HTTP client.\n* **Glide**: An image loading library.\n* **ViewBinding**: Allows you to more easily write code that interacts with views.\n* **Material 3**: The latest version of Material Design, introduced in Android 12.\n* **Material Motion**: A set of transition patterns that can help users understand and navigate an app.\n\n## 📷 Screenshots 📷\n\n| Details | Home |  Favorites | Topics\n|:-:|:-:|:-:|:-:|\n| ![1](./assets/screenshots/course_light.png) | ![2](./assets/screenshots/home_light.png) | ![3](./assets/screenshots/favorites_light.png) | ![4](./assets/screenshots/topics_light.png)\n| Details Dark | Home Dark |  Favorites Dark | Topics Dark\n| ![5](./assets/screenshots/course_dark.png) | ![6](./assets/screenshots/home_dark.png) | ![7](./assets/screenshots/favorites_dark.png) | ![8](./assets/screenshots/topics_dark.png)\n\n\n\n\n## License\n```\nMIT License\n\nCopyright (c) 2022 Jonathan Areas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjxareas%2Ftechhub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjxareas%2Ftechhub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjxareas%2Ftechhub/lists"}