{"id":14008682,"url":"https://github.com/skydoves/MovieCompose","last_synced_at":"2025-07-24T04:31:15.523Z","repository":{"id":41608623,"uuid":"398811971","full_name":"skydoves/MovieCompose","owner":"skydoves","description":"🎞 A demo movie app using Jetpack Compose and Hilt based on modern Android tech stacks.","archived":false,"fork":false,"pushed_at":"2021-12-08T11:32:10.000Z","size":32930,"stargazers_count":505,"open_issues_count":2,"forks_count":71,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-11-20T21:58:43.987Z","etag":null,"topics":["android","compose","coroutines","flow","hilt","hilt-android","jetpack-compose","kotlin","skydoves"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/skydoves.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null},"funding":{"github":"skydoves","custom":["https://www.paypal.me/skydoves","https://www.buymeacoffee.com/skydoves"]}},"created_at":"2021-08-22T13:54:26.000Z","updated_at":"2024-11-17T05:31:15.000Z","dependencies_parsed_at":"2022-07-06T13:02:42.184Z","dependency_job_id":null,"html_url":"https://github.com/skydoves/MovieCompose","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydoves%2FMovieCompose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydoves%2FMovieCompose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydoves%2FMovieCompose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydoves%2FMovieCompose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skydoves","download_url":"https://codeload.github.com/skydoves/MovieCompose/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227410909,"owners_count":17774811,"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","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","compose","coroutines","flow","hilt","hilt-android","jetpack-compose","kotlin","skydoves"],"created_at":"2024-08-10T11:02:00.796Z","updated_at":"2024-11-30T19:31:28.613Z","avatar_url":"https://github.com/skydoves.png","language":"Kotlin","readme":"\u003ch1 align=\"center\"\u003eMovieCompose\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://opensource.org/licenses/Apache-2.0\"\u003e\u003cimg alt=\"License\" src=\"https://img.shields.io/badge/License-Apache%202.0-blue.svg\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://android-arsenal.com/api?level=21\"\u003e\u003cimg alt=\"API\" src=\"https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/skydoves/MovieCompose/actions\"\u003e\u003cimg alt=\"Build Status\" src=\"https://github.com/skydoves/MovieCompose/workflows/Android%20CI/badge.svg\"/\u003e\u003c/a\u003e \n  \u003ca href=\"https://github.com/skydoves\"\u003e\u003cimg alt=\"Profile\" src=\"https://skydoves.github.io/badges/skydoves.svg\"/\u003e\u003c/a\u003e \n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e  \nMovieCompose is a small demo application based on modern Android tech-stacks especially focus on Jetpack Compose UI using The Movie DB API. Also fetching data from the network and integrating persisted data in the database via repository pattern.\n\u003c/p\u003e\n\u003c/br\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"/previews/preview2.png\" /\u003e\n\u003c/p\u003e\n\n\n## How to build on your environment\nAdd your [The Movie DB](https://www.themoviedb.org/)'s API key in local.properties file.\n```xml\ntmdb_api_key=YOUR_API_KEY\n```\n\n\u003cimg src=\"/previews/preview0.gif\" align=\"right\" width=\"32%\"/\u003e\n\n## Tech stack \u0026 Open-source libraries\n- Minimum SDK level 21\n- 100% [Kotlin](https://kotlinlang.org/) based + [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) + [Flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/) for asynchronous.\n- Hilt for dependency injection.\n- JetPack\n  - Compose - A modern toolkit for building native Android UI.\n  - Lifecycle - dispose observing data when lifecycle state changes.\n  - ViewModel - UI related data holder, lifecycle aware.\n  - Room Persistence - construct database.\n  - App Startup - Provides a straightforward, performant way to initialize components at application startup.\n- Architecture\n  - MVVM Architecture (Declarative View - ViewModel - Model)\n  - Repository pattern\n- Material Design \u0026 Animations\n- [Accompanist](https://github.com/google/accompanist) - A collection of extension libraries for Jetpack Compose.\n- [Landscapist](https://github.com/skydoves/landscapist) - Jetpack Compose image loading library with shimmer \u0026 circular reveal animations.\n- [Retrofit2 \u0026 OkHttp3](https://github.com/square/retrofit) - construct the REST APIs and paging network data.\n- [Sandwich](https://github.com/skydoves/Sandwich) - construct lightweight http API response and handling error responses.\n- [WhatIf](https://github.com/skydoves/whatif) - checking nullable object and empty collections more fluently.\n- [Timber](https://github.com/JakeWharton/timber) - logging.\n\n## Find this repository useful? :heart:\nSupport it by joining __[stargazers](https://github.com/skydoves/MovieCompose/stargazers)__ for this repository. :star: \u003cbr\u003e\nAnd __[follow](https://github.com/skydoves)__ me for my next creations! 🤩\n\n# License\n```xml\nDesigned and developed by 2021 skydoves (Jaewoong Eum)\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n\n","funding_links":["https://github.com/sponsors/skydoves","https://www.paypal.me/skydoves","https://www.buymeacoffee.com/skydoves"],"categories":["Kotlin"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskydoves%2FMovieCompose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskydoves%2FMovieCompose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskydoves%2FMovieCompose/lists"}