{"id":13614576,"url":"https://github.com/TheCodeMonks/NYTimes-App","last_synced_at":"2025-04-13T18:33:28.739Z","repository":{"id":40630141,"uuid":"278958324","full_name":"TheCodeMonks/NYTimes-App","owner":"TheCodeMonks","description":"🗽 A Simple Demonstration of the New York Times App 📱 using Jsoup web crawler with MVVM Architecture 🔥","archived":false,"fork":false,"pushed_at":"2022-03-13T11:13:20.000Z","size":21190,"stargazers_count":515,"open_issues_count":2,"forks_count":60,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-05T03:12:01.362Z","etag":null,"topics":["android","android-application","android-architecture","android-development","coroutines","hacktoberfest","jetpack-android","jetpack-datastore","jetpack-navigation","jsoup-android","kotlin","kotlin-android","livedata","material-design","material-ui","mvvm-android","recyclerview","room-persistence-library","viewmodel","webscraping"],"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/TheCodeMonks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"custom":["https://www.paypal.com/paypalme2/spikeysanju"]}},"created_at":"2020-07-11T23:32:14.000Z","updated_at":"2025-02-14T19:45:09.000Z","dependencies_parsed_at":"2022-07-14T04:10:27.294Z","dependency_job_id":null,"html_url":"https://github.com/TheCodeMonks/NYTimes-App","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeMonks%2FNYTimes-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeMonks%2FNYTimes-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeMonks%2FNYTimes-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeMonks%2FNYTimes-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheCodeMonks","download_url":"https://codeload.github.com/TheCodeMonks/NYTimes-App/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248760740,"owners_count":21157419,"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","android-application","android-architecture","android-development","coroutines","hacktoberfest","jetpack-android","jetpack-datastore","jetpack-navigation","jsoup-android","kotlin","kotlin-android","livedata","material-design","material-ui","mvvm-android","recyclerview","room-persistence-library","viewmodel","webscraping"],"created_at":"2024-08-01T20:01:03.355Z","updated_at":"2025-04-13T18:33:27.878Z","avatar_url":"https://github.com/TheCodeMonks.png","language":"Kotlin","readme":"\n\n![GitHub Cards Preview](https://github.com/TheCodeMonks/TechBytes/blob/master/screenshots/nytimes_card.jpg?raw=true)\n\n# 🗞 NY Times\n**NY Times** is an Minimal News 🗞 Android application built to describe the use of JSoup with Modern Android development tools.  *Made with love ❤️ by [Spikeysanju](https://github.com/Spikeysanju)*\n\n***Try latest NY Times app apk from below 👇***\n\n[![NY Times](https://img.shields.io/badge/NYTimes🌈-APK-black.svg?style=for-the-badge\u0026logo=android)](https://github.com/TheCodeMonks/NYTimes-App/releases/download/v1.4.3/nytimes.apk)\n\n\n## Built With 🛠\n- [Kotlin](https://kotlinlang.org/) - First class and official programming language for Android development.\n- [JSoup](https://jsoup.org/) - Open source Java HTML parser, with the best of HTML5 DOM methods and CSS selectors, for easy data extraction.\n- [Coroutines](https://kotlinlang.org/docs/reference/coroutines-overview.html) - For asynchronous and more..\n- [Android Architecture Components](https://developer.android.com/topic/libraries/architecture) - Collection of libraries that help you design robust, testable, and maintainable apps.\n- [Flow](https://kotlinlang.org/docs/reference/coroutines/flow.html) - A flow is an asynchronous version of a Sequence, a type of collection whose values are lazily produced.\n- [Jetpack DataStore](https://developer.android.com/topic/libraries/architecture/datastore) - Jetpack DataStore is a data storage solution that allows you to store key-value pairs or typed objects with protocol buffers. DataStore uses Kotlin coroutines and Flow to store data asynchronously, consistently, and transactionally\n  - [LiveData](https://developer.android.com/topic/libraries/architecture/livedata) - Data objects that notify views when the underlying database changes.\n  - [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) - Stores UI-related data that isn't destroyed on UI changes. \n  - [Room](https://developer.android.com/topic/libraries/architecture/room) - SQLite object mapping library.\n  - [Jetpack Navigation](https://developer.android.com/guide/navigation) - Navigation refers to the interactions that allow users to navigate across, into, and back out from the different pieces of content within your app\n- [Material Components for Android](https://github.com/material-components/material-components-android) - Modular and customizable Material Design UI components for Android.\n\n\n# Package Structure\n    \n    www.thecodemonks.techbytes   # Root Package\n    .\n    ├── data                # For data handling.\n    │   ├── db              # Local Persistence Database. Room (SQLite) database\n    |   │   ├── dao         # Data Access Object for Room   \n    |   |   |── database    # Datbase Instance\n    |\n    ├── model               # Model classes\n    |\n    |\n    ├── ui                  # Activity/View layer\n    │   ├── |── base        # Base Activity\n    |   │   ├── adapter     # Adapter for RecyclerView\n    |   │   └── viewmodel   # Viewmodels for Articles   \n    |   │   ├── articles    # Articles Fragment\n    |   │   ├── details     # Details Fragment\n    |   │   ├── bookmarks   # Bookmarks Fragment\n    |\n    |\n    |── utils               # Utils for URls\n\n\n\n\n        \n    \n    \n    ## Architecture\n    \nThis app uses [***MVVM (Model View View-Model)***](https://developer.android.com/jetpack/docs/guide#recommended-app-arch) architecture.\n\n![](https://github.com/TheCodeMonks/Notes-App/blob/master/screenshots/ANDROID%20ROOM%20DB%20DIAGRAM.jpg)\n\n\n## Contribute\nIf you want to contribute to this library, you're always welcome!\nSee [Contributing Guidelines](https://github.com/TheCodeMonks/Notzz-App/blob/master/CONTRIBUTION.md). \n\n## Contact\nHave an project? DM us at 👇\n\nDrop a mail to:- thecodemonksorg@gmail.com\n\n# Donation\nIf this project help you reduce time to develop, you can give me a cup of coffee :) \n\n[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/paypalme2/spikeysanju)\n\n\n## License\n```\nMIT License\n\nCopyright (c) 2020 TheCodeMonks\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","funding_links":["https://www.paypal.com/paypalme2/spikeysanju"],"categories":[":shamrock:  **Categories**","Kotlin",":art: Pattern"],"sub_categories":[":newspaper: News","MVVM"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTheCodeMonks%2FNYTimes-App","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTheCodeMonks%2FNYTimes-App","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTheCodeMonks%2FNYTimes-App/lists"}