├── LICENSE ├── README.md ├── android-nanodegree-certificate.jpg ├── certificate.pdf └── congratulations.png /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Yassin AJDI 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Android Developer Nanodegree Projects

2 |

All of my completed Android Nanodegree projects.

3 | 4 |

5 | SandwichClub • 6 | PopularMovies • 7 | BakingApp • 8 | BuildItBigger • 9 | XYZReader • 10 | License 11 |

12 | 13 | ![screenshot](https://raw.githubusercontent.com/YassinAJDI/android-nanodegree-projects/master/congratulations.png) 14 | 15 | ## 🍔 Project #1: SandwichClub 16 | 17 | 18 | 19 | *#JSON Parsing #Material Design #DataBinding* 20 | 21 | Building a layout and populating its fields from data received as JSON is a common task for Android Developers. Although JSON parsing is usually done using libraries, writing the JSON parsing for this project will help you to better understand how it is processed. 22 | 23 | 🔗 **[Check it out: Sandwich Club](https://github.com/YassinAJDI/SandwichClub)** 24 |
25 | 26 | ## 🎥 Project #2 & #3: PopularMovies 27 | 28 | 29 | 30 | *#Offline Support #Material Design #DataBinding #MVVM Architecture #Paging #ConstraintLayout #Retrofit* 31 | 32 | Most of us can relate to kicking back on the couch and enjoying a movie with friends and family. This app allow users to discover the most popular nd top rated movies playing. Showcasing Android best practices with Google's recommended architecture: MVVM + Repository + Offline support + Android Architecture Components + Paging library & Retrofit2. 33 | 34 | 35 | 36 | 37 |
38 |
39 | 40 | 🔗 **[Check it out: Popular Movies](https://github.com/YassinAJDI/PopularMovies)** 41 | 42 |
43 |
44 | 45 | ## 🍖 Project #4: Baking App 46 | 47 | 48 | 49 | *#Exoplayer #Espresso #Widgets #Master/Detail Flow #Fragments* 50 | 51 | This app allows a user to select a recipe and see video-guided steps for how to complete it. 52 | In this project, you will create an app to view video-guided steps for how to complete recipes. You will handle media loading, verify your user interfaces with UI tests, and integrate third party libraries. You'll also provide a complete user experience with a home screen widget. This will involve finding and handling error cases, adding accessibility features, allowing for localization, adding a widget. 53 | 54 | 55 | 56 | 57 |
58 |
59 | 60 | 🔗 **[Check it out: Baking App](https://github.com/YassinAJDI/BakingApp)** 61 | 62 |
63 |
64 | 65 | ## 🔨 Project #5: Build It Bigger 66 | 67 | 68 | 69 | *#Google Cloud Endpoints #Gradle* 70 | 71 | A joke telling app with a free ad-supported version and a paid version. Google Cloud Endpoints backend used to supply the jokes. 72 | 73 | 🔗 **[Check it out: Build It Bigger](https://github.com/YassinAJDI/BuildItBigger)** 74 | 75 |
76 | 77 | ## 🎨 Project #6: XYZ Reader 78 | 79 | 80 | 81 | *#UI #Material Design #Shared Element Transitions #ViewPager* 82 | 83 | A mock RSS feed reader featuring banner photos and headlines. In this project, you will redesign an app to follow the Material Design guidelines and translate a set of static design mocks to a living and breathing app. 84 | 85 | 86 | 87 | 88 |
89 |
90 | 91 | 🔗 **[Check it out: XYZ Reader](https://github.com/YassinAJDI/XYZReader)** 92 | 93 |
94 | 95 | ## 📄 License 96 | 97 | This project is released under the MIT license. 98 | See [LICENSE](./LICENSE) for details. 99 | -------------------------------------------------------------------------------- /android-nanodegree-certificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassinAJDI/android-nanodegree-projects/7d73ebb2014081ccfbd0b42c2780cc27bd560ef1/android-nanodegree-certificate.jpg -------------------------------------------------------------------------------- /certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassinAJDI/android-nanodegree-projects/7d73ebb2014081ccfbd0b42c2780cc27bd560ef1/certificate.pdf -------------------------------------------------------------------------------- /congratulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassinAJDI/android-nanodegree-projects/7d73ebb2014081ccfbd0b42c2780cc27bd560ef1/congratulations.png --------------------------------------------------------------------------------