From 1cb42373d7e1a3417cfb2992a21ae3ac74886280 Mon Sep 17 00:00:00 2001 From: Syed Rizvi Date: Sat, 25 Jan 2025 13:33:10 +0000 Subject: [PATCH] added Movie app to help users find the popular movies --- .idea/.gitignore | 3 + .../Awesome-Android-Open-Source-Projects.iml | 9 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/other.xml | 373 ++++++++++++++++++ .idea/vcs.xml | 6 + CONTRIBUTORS.md | 3 +- README.md | 6 +- 8 files changed, 412 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/Awesome-Android-Open-Source-Projects.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/other.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/Awesome-Android-Open-Source-Projects.iml b/.idea/Awesome-Android-Open-Source-Projects.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/Awesome-Android-Open-Source-Projects.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07115cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0811b80 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/other.xml b/.idea/other.xml new file mode 100644 index 0000000..9542437 --- /dev/null +++ b/.idea/other.xml @@ -0,0 +1,373 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 51b169d..c52d58f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -13,4 +13,5 @@ Here's a list of open-source contributors who have compiled the resources: - [JacobKerames](https://github.com/JacobKerames) - [swapnil-musale](https://github.com/swapnil-musale) - [Tunde-Sanusi](https://github.com/tuhamworld) -- [sharshv2012](https://github.com/sharshv2012) \ No newline at end of file +- [sharshv2012](https://github.com/sharshv2012) +- [MaddyRizvi](https://github.com/MaddyRizvi) \ No newline at end of file diff --git a/README.md b/README.md index 5f2c954..36d2321 100644 --- a/README.md +++ b/README.md @@ -242,7 +242,11 @@ - [Jetcaster](https://github.com/android/compose-samples/tree/master/Jetcaster) - Jetcaster is a sample podcast app, built with Jetpack Compose. The goal of the sample is to showcase dynamic theming and full featured architecture. - + +- [MovieFinder](https://github.com/MaddyRizvi/movie-app) + + - The Movie App is an Android application built using Java and follows the MVVM architecture. It fetches movie data from The Movie Database (TMDb) API and displays a list of movies on the screen in a user-friendly interface. + - [MovieGuide](https://github.com/esoxjem/MovieGuide) - Movie discovery app showcasing MVP, RxJava, Dagger 2 and Clean Architecture