Skip to content

Develop beautiful and fully functional Android App in Android Studio using the power of Kotlin programming language.

License

Notifications You must be signed in to change notification settings

MaikolSoro/Foody

Repository files navigation


The application will work with local and remote data sources. And for the remote data source, a third-party API for food recipes, called Spoonacular, was used. I am going to teach you how to establish a connection between your application and the server. So basically we will send a GET request to our API and receive a list of food recipes as a response. Also, the application will not be able to handle any internet connection and store or cache the data locally in the database when needed.

Also from the application we can search recipes directly from our API. So if you have your favorite flavor, you can search for it here and you will probably find a lot of amazing recipes. It will also have Favorites Fragment where we can save our favorite recipes to use later when we need them. And finally the app will have its fun side, and that's a food joke snippet.

📸 Screenshots 📸

🌞 Light Mode

1. Splash Screen 2. Recipes Screen 3. Meal Type 4. Favorites Screen 5. Details Screen 6. Food Joke

🌙 Dark Mode

1. Recipes Screen 2. Meal Type 3. Favorites Screen 4. Details Screen 5. Food Joke 6. Ingredients 7. Instructions

↘️ Deployment ↘️

These are the key parameters for FoodyApp.

Parameters Value
compileSdk 33
targetSdk 33
minSdk 21
xml
kotlinVersion 1.8.0

You can clone the repository or download the Zip file here

🛠️ Architecture 🛠️

This app uses MVVM (Model View View-Model) architecture.

ANDROID ROOM DB DIAGRAM

🏗️ Tech Stack 🏗️

  • Kotlin - First class and official programming language for Android development.
  • Coroutines - For asynchronous and more..
  • Flow - A cold asynchronous data stream that sequentially emits values and completes normally or with an exception.
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • LiveData - Data objects that notify views when the underlying database changes.
    • ViewModel - Stores UI-related data that isn't destroyed on UI changes.
    • ViewBinding - Generates a binding class for each XML layout file present in that module and allows you to more easily write code that interacts with views.
    • Room - SQLite object mapping library.
  • Navigation Component Navigation refers to the interactions that allow users to navigate across, into, and back out from the different pieces of content within your app.
    • Safe args - Gradle plugin that provides type safety when navigating and passing data between destinations.
  • Jetpack Security
  • DataStore - Jetpack DataStore is a data storage solution that allows you to store key-value pairs or typed objects with protocol buffers.
  • Dependency Injection -
    • Hilt-Dagger - Standard library to incorporate Dagger dependency injection into an Android application.
    • Hilt-ViewModel - DI for injecting ViewModel.
  • Retrofit 2 - A type-safe HTTP client for Android and Java.
  • GSON Converter - A Converter which uses Gson for serialization to and from JSON.
  • Material Components for Android - Modular and customizable Material Design UI components for Android.

📝 Authors 📝

🤝 Contact 🤝

Have an project? DM me at 👇

Drop a mail to:- maikolsoro.z1998@gmail.com

Code Standards

🤝 Contributing 🤝🔥

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request and enjoy! :D

📜 License 📜

MIT License

Copyright (c) 2021 Michael Soro Zúñiga

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.