Modern Food Recipes App - Android Development with Kotlin
- Description
- Curriculum
- FAQ
- Reviews
Hello there and welcome to my course, in this course I’m going to teach you how to create a fully functional Android application using the power of Kotlin programming language. We are going to develop Food Recipes application, where we can browse recipes from various different kind of meal and diet types. This App Design will be a lot similar to the one from my Material UI Design course which I made a while ago.
Our application will work with both Remote and local data sources. And for Remote data source we will use a third party API for food recipes, called Spoonacular. I’m going to teach you how to establish connection between your app and the server. So basically we will send GET Request to our API and receive a list of food recipes as a Response. Also our app will be able to handle no internet connection, and store or cache the data localy to our database when it’s needed.
Also from our application we will be able to search recipes from our API directly. So if you have your favorite flavor you can search it here and probably you’ll find many amazing recipes. Next our app will have Favorites Fragment where we can save our favorite recipes for later use when we need them. And finally our app will have it’s fun side, and that is food joke fragment.
However this course is not for Absolute Beginners in Android Development, at least you need to have a basic knowledge about most popular Android Architecture components, and Kotlin programming language in general. This is not going to be easy task especially if you haven’t worked before simultaneously with API and local database. Still don’t get discouraged everything is learnable here, if you are motivated enough of course.
One more thing, so this course will be an ongoing project which means that I will post updates on a regular basis, whenever we find a new bug, or whenever some code cleanup is required. Which is why I want to involve all of you who watch this course to work together with me in making this app even better. I’m going to give me you more details about that at the end of this course of course.
So what are you waiting for, let’s get started developers!
Source code: Visit my Github profile (stevdza-san)
-
1Introduction
Source Code (Github): https://github.com/stevdza-san/Foody
-
2Application Design
-
3Application Preview
-
4Project Structure Overview
-
5Introducing with API
API Endpoint example: https://api.spoonacular.com/recipes/complexSearch?number=50&apiKey=[YOUR-API-KEY]&type=snack&diet=vegan&addRecipeInformation=true&fillIngredients=true
-
6API Response Example
API Endpoint example: https://api.spoonacular.com/recipes/complexSearch?number=50&apiKey=[YOUR-API-KEY]&type=snack&diet=vegan&addRecipeInformation=true&fillIngredients=true
-
7Github Repository
-
24Create MyApplication class
-
25Create NetworkModule
ApplicationComponent::class is now deprecated. We now use SingletonComponent::class instead.
I have posted an updated video about that at lecture number 143. -
26Inject RemoteDataSource class
-
27Create and Inject Repository class
-
28Create NetworkResult class
-
29Create and Inject MainViewModel class
-
54About BottomSheet
-
55Design RecipesBottomSheet
-
56Navigate to RecipesBottomSheet
-
57Customize Chip Style
-
58Create and Inject DataStoreRepository class
-
59Modify and Inject RecipesViewModel
-
60RecipesBottomSheet - Persist Selected Chips
-
61Handle Return from BottomSheet - Safe Args
-
62Bottom Sheet - Recap