{"id":13774464,"url":"https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android","last_synced_at":"2025-05-11T06:33:09.070Z","repository":{"id":49685839,"uuid":"153311594","full_name":"SoftwareEngineeringDaily/software-engineering-daily-android","owner":"SoftwareEngineeringDaily","description":"Android client for Software Engineering Daily","archived":false,"fork":false,"pushed_at":"2019-11-25T22:47:16.000Z","size":1802,"stargazers_count":89,"open_issues_count":11,"forks_count":29,"subscribers_count":15,"default_branch":"develop","last_synced_at":"2024-11-17T09:39:12.112Z","etag":null,"topics":["android","audio","java","kotlin","medi","podcast"],"latest_commit_sha":null,"homepage":"https://softwareengineeringdaily.github.io/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SoftwareEngineeringDaily.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null}},"created_at":"2018-10-16T15:43:26.000Z","updated_at":"2024-08-31T22:14:02.000Z","dependencies_parsed_at":"2022-08-25T17:00:14.566Z","dependency_job_id":null,"html_url":"https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftwareEngineeringDaily%2Fsoftware-engineering-daily-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftwareEngineeringDaily%2Fsoftware-engineering-daily-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftwareEngineeringDaily%2Fsoftware-engineering-daily-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftwareEngineeringDaily%2Fsoftware-engineering-daily-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SoftwareEngineeringDaily","download_url":"https://codeload.github.com/SoftwareEngineeringDaily/software-engineering-daily-android/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253528407,"owners_count":21922623,"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","audio","java","kotlin","medi","podcast"],"created_at":"2024-08-03T17:01:26.993Z","updated_at":"2025-05-11T06:33:08.535Z","avatar_url":"https://github.com/SoftwareEngineeringDaily.png","language":"Kotlin","readme":"# SEDaily-Android\n\n[![logo](https://i.imgur.com/3OtP3p8.png)](https://softwareengineeringdaily.com/)\n\nA player for the Software Engineering Daily Podcast\n\nGetting Started\n---------------\nThe app has 2 build types: debug and release with minor differences between both builds. [`Stetho`](http://facebook.github.io/stetho/) for example is only enabled for debug builds. And [`Timber`](https://github.com/JakeWharton/timber) to log warnings and errors as Crashlytics non-fatal crashes in release builds.\n\nWe also use different app icons for debug and release builds and you can keep both builds on your device and run them side by side.\n\n![](screenshots/debug-release-icons.png)\n\n\nThe app is 100% [Kotlin](http://kotlinlang.org) and we think it is better to keep it this way.\n\nWe use [`Koin`](https://insert-koin.io) which is a lightweight dependency injection framework to manage all dependencies. And [`Kotlin Coroutines`](https://kotlinlang.org/docs/reference/coroutines-overview.html) for asynchronous work. We also use `Kotlin Coroutines` with [`Room`](https://developer.android.com/topic/libraries/architecture/room) and [`Retrofit`](https://square.github.io/retrofit/).\n\nCloning the Project\n-------------------\n```sh\n$ git clone https://github.com/SoftwareEngineeringDaily/SEDaily-Android.git\n$ cd SEDaily-Android\n```\n\nAnd then compile the project with Gradle using\n```sh\n./gradlew build\n```\n\nScreenshots\n-----------\n![App screenshots](screenshots/app_screenshots.png)\n\nLibraries Used\n--------------\n* [Foundation][0] - Components for core system capabilities, and Kotlin extensions.\n  * [AppCompat][1] - Degrade gracefully on older versions of Android.\n  * [Android KTX][2] - Write more concise, idiomatic Kotlin code and helper functions for easy integration with coroutines.\n  * [exoplayer][6] to manage the media playback.\n* [Architecture][10] - A collection of libraries that help design robust, testable, and maintainable apps.\n  * [Lifecycles][12] - Create a UI that automatically responds to lifecycle events.\n  * [LiveData][13] - Build data objects that notify views when the underlying data changes.\n  * [Navigation][14] - Handle everything needed for in-app navigation.\n  * [Room][16] - Access app's SQLite database with in-app objects and compile-time checks.\n  * [ViewModel][17] - Store UI-related data that isn't destroyed on app rotations.\n* Third party\n  * [Glide][90] for image loading.\n  * [Epoxy][3] for building complex screens in a RecyclerView.\n  * [Koin][4] a lightweight dependency injection framework to manage all dependencies.\n  * [Retrofit][5] a type-safe HTTP client for Android and Java.\n  * [Timber][7] to log warnings and errors as Crashlytics non-fatal crashes in release builds.\n  * [Kotlin Coroutines][91] for managing background threads with simplified code and reducing needs for callbacks.\n\n[0]: https://developer.android.com/jetpack/components\n[1]: https://developer.android.com/topic/libraries/support-library/packages#v7-appcompat\n[2]: https://developer.android.com/kotlin/ktx\n[3]: https://github.com/airbnb/epoxy\n[4]: https://insert-koin.io\n[5]: https://square.github.io/retrofit/\n[6]: https://exoplayer.dev\n[7]: https://github.com/JakeWharton/timber\n[10]: https://developer.android.com/jetpack/arch/\n[12]: https://developer.android.com/topic/libraries/architecture/lifecycle\n[13]: https://developer.android.com/topic/libraries/architecture/livedata\n[14]: https://developer.android.com/topic/libraries/architecture/navigation/\n[16]: https://developer.android.com/topic/libraries/architecture/room\n[17]: https://developer.android.com/topic/libraries/architecture/viewmodel\n[90]: https://bumptech.github.io/glide/\n[91]: https://kotlinlang.org/docs/reference/coroutines-overview.html\n\nUpcoming features\n-----------------\nInterested in seeing a particular feature implemented in this app? Please open a new [issue](https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android/issues) with a [feature proposal](https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android/blob/master/CONTRIBUTING.md#feature-proposals).\n\nContributing\n------------\nCheckout [CONTRIBUTING.md](https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android/blob/master/CONTRIBUTING.md) for details.\n","funding_links":[],"categories":[":art: Pattern"],"sub_categories":["MVVM"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSoftwareEngineeringDaily%2Fsoftware-engineering-daily-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSoftwareEngineeringDaily%2Fsoftware-engineering-daily-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSoftwareEngineeringDaily%2Fsoftware-engineering-daily-android/lists"}