├── .github └── workflows │ └── Build.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml └── misc.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── schemas │ └── com.example.foodrecipes.data.local.RecipesDatabase │ │ └── 1.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── foodrecipes │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── foodrecipes │ │ │ ├── FoodApplication.kt │ │ │ ├── data │ │ │ ├── di │ │ │ │ ├── LocalModule.kt │ │ │ │ └── RemoteModule.kt │ │ │ ├── dto │ │ │ │ ├── recipe_details │ │ │ │ │ ├── IngredientDto.kt │ │ │ │ │ └── RecipeDetailsDto.kt │ │ │ │ └── recipes_list │ │ │ │ │ ├── RecipeDto.kt │ │ │ │ │ └── RecipesResponseDto.kt │ │ │ ├── local │ │ │ │ ├── DishTypesConverter.kt │ │ │ │ ├── IngredientsConverter.kt │ │ │ │ ├── RecipeDetailsDao.kt │ │ │ │ └── RecipesDatabase.kt │ │ │ ├── remote │ │ │ │ ├── Constants.kt │ │ │ │ └── FoodRecipesApi.kt │ │ │ └── repository │ │ │ │ └── RecipeRepositoryImpl.kt │ │ │ ├── domain │ │ │ ├── di │ │ │ │ └── RepositoryModule.kt │ │ │ ├── model │ │ │ │ ├── recipe_details │ │ │ │ │ ├── Ingredient.kt │ │ │ │ │ └── RecipeDetails.kt │ │ │ │ └── recipes_list │ │ │ │ │ ├── Recipe.kt │ │ │ │ │ └── RecipesResponse.kt │ │ │ ├── repository │ │ │ │ └── RecipeRepository.kt │ │ │ └── usecase │ │ │ │ └── GetRecipesUseCase.kt │ │ │ └── presentation │ │ │ ├── MainActivity.kt │ │ │ ├── Screen.kt │ │ │ ├── recipes_details_screen │ │ │ ├── RecipeDetailsUiState.kt │ │ │ ├── RecipesDetailsScreen.kt │ │ │ ├── RecipesDetailsScreenViewModel.kt │ │ │ └── components │ │ │ │ ├── Details.kt │ │ │ │ ├── DetailsItems.kt │ │ │ │ ├── DishTypes.kt │ │ │ │ ├── Ingredients.kt │ │ │ │ └── Navbar.kt │ │ │ ├── recipes_screen │ │ │ ├── RecipesScreen.kt │ │ │ ├── RecipesScreenViewModel.kt │ │ │ └── components │ │ │ │ ├── Header.kt │ │ │ │ └── RecipeItem.kt │ │ │ ├── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ │ └── utils │ │ │ ├── HttpStatusCode.kt │ │ │ └── States.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_back_arrow.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_menu.xml │ │ ├── profile_image.png │ │ └── serving_svgrepo_com.xml │ │ ├── font │ │ └── main_font.ttf │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── example │ └── foodrecipes │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── media ├── clean.png ├── screenshot1.png ├── screenshot2.png ├── video.gif └── video.mp4 └── settings.gradle /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | FoodApp -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/com.example.foodrecipes.data.local.RecipesDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/schemas/com.example.foodrecipes.data.local.RecipesDatabase/1.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/foodrecipes/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/androidTest/java/com/example/foodrecipes/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/FoodApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/FoodApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/di/LocalModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/di/LocalModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/di/RemoteModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/di/RemoteModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/dto/recipe_details/IngredientDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/dto/recipe_details/IngredientDto.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/dto/recipe_details/RecipeDetailsDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/dto/recipe_details/RecipeDetailsDto.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/dto/recipes_list/RecipeDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/dto/recipes_list/RecipeDto.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/dto/recipes_list/RecipesResponseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/dto/recipes_list/RecipesResponseDto.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/local/DishTypesConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/local/DishTypesConverter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/local/IngredientsConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/local/IngredientsConverter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/local/RecipeDetailsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/local/RecipeDetailsDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/local/RecipesDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/local/RecipesDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/remote/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/remote/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/remote/FoodRecipesApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/remote/FoodRecipesApi.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/data/repository/RecipeRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/data/repository/RecipeRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/di/RepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/di/RepositoryModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/model/recipe_details/Ingredient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/model/recipe_details/Ingredient.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/model/recipe_details/RecipeDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/model/recipe_details/RecipeDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/model/recipes_list/Recipe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/model/recipes_list/Recipe.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/model/recipes_list/RecipesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/model/recipes_list/RecipesResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/repository/RecipeRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/repository/RecipeRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/domain/usecase/GetRecipesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/domain/usecase/GetRecipesUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/Screen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipeDetailsUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipeDetailsUiState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipesDetailsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipesDetailsScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipesDetailsScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/RecipesDetailsScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Details.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Details.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/DetailsItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/DetailsItems.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/DishTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/DishTypes.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Ingredients.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Ingredients.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Navbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_details_screen/components/Navbar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/RecipesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/RecipesScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/RecipesScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/RecipesScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/components/Header.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/components/Header.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/components/RecipeItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/recipes_screen/components/RecipeItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/utils/HttpStatusCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/utils/HttpStatusCode.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/foodrecipes/presentation/utils/States.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/java/com/example/foodrecipes/presentation/utils/States.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_back_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable/ic_back_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable/profile_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/serving_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/drawable/serving_svgrepo_com.xml -------------------------------------------------------------------------------- /app/src/main/res/font/main_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/font/main_font.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/foodrecipes/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/app/src/test/java/com/example/foodrecipes/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/gradlew.bat -------------------------------------------------------------------------------- /media/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/media/clean.png -------------------------------------------------------------------------------- /media/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/media/screenshot1.png -------------------------------------------------------------------------------- /media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/media/screenshot2.png -------------------------------------------------------------------------------- /media/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/media/video.gif -------------------------------------------------------------------------------- /media/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/media/video.mp4 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoud-elshahat/FoodRecipes/HEAD/settings.gradle --------------------------------------------------------------------------------