├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── caches │ └── gradle_models.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── google-services.json ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── kevintoh0305gmail │ │ └── gastronome │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ ├── Avenir-Black.ttf │ │ │ ├── Avenir-BlackOblique.ttf │ │ │ ├── Avenir-Book.ttf │ │ │ ├── Avenir-BookOblique.ttf │ │ │ ├── Avenir-Heavy.ttf │ │ │ ├── Avenir-HeavyOblique.ttf │ │ │ ├── Avenir-Light.ttf │ │ │ ├── Avenir-LightOblique.ttf │ │ │ ├── Avenir-Medium.ttf │ │ │ ├── Avenir-MediumOblique.ttf │ │ │ ├── Avenir-Oblique.ttf │ │ │ ├── Avenir-Roman.ttf │ │ │ ├── CerebriSans-Bold.ttf │ │ │ ├── CerebriSans-BoldItalic.ttf │ │ │ ├── CerebriSans-Book.ttf │ │ │ ├── CerebriSans-BookItalic.ttf │ │ │ ├── CerebriSans-ExtraBold.ttf │ │ │ ├── CerebriSans-ExtraBoldItalic.ttf │ │ │ ├── CerebriSans-Heavy.ttf │ │ │ ├── CerebriSans-HeavyItalic.ttf │ │ │ ├── CerebriSans-Italic.ttf │ │ │ ├── CerebriSans-Light.ttf │ │ │ ├── CerebriSans-LightItalic.ttf │ │ │ ├── CerebriSans-Medium.ttf │ │ │ ├── CerebriSans-Regular.ttf │ │ │ ├── CerebriSans-SemiBold.ttf │ │ │ └── CerebriSans-SemiBoldItalic.ttf │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── kevintoh0305gmail │ │ │ └── gastronome │ │ │ ├── AddCustomRecipeFragment.java │ │ │ ├── BottomSheetDrinkLogFragment.java │ │ │ ├── BottomSheetFoodLogFragment.java │ │ │ ├── ChooseGoal.java │ │ │ ├── ChooseLoginRegister.java │ │ │ ├── ContinueToSignUp.java │ │ │ ├── DrinkLog.java │ │ │ ├── FavRecipesAdapter.java │ │ │ ├── Favourites.java │ │ │ ├── FavouritesFragment.java │ │ │ ├── Favourites_Activity.java │ │ │ ├── FeedFragment.java │ │ │ ├── FeedHomeFragment.java │ │ │ ├── FeedPopularFragment.java │ │ │ ├── FoodLog.java │ │ │ ├── GenderSelection.java │ │ │ ├── HelloPage.java │ │ │ ├── Home.java │ │ │ ├── IngredientsAdapter.java │ │ │ ├── IngredientsViewHolder.java │ │ │ ├── InputAge.java │ │ │ ├── InputHeight.java │ │ │ ├── InputUnit.java │ │ │ ├── InputWeight.java │ │ │ ├── InstructionsAdapter.java │ │ │ ├── InstructionsViewHolder.java │ │ │ ├── LogFragment.java │ │ │ ├── Login.java │ │ │ ├── Logs.java │ │ │ ├── MenuFragment.java │ │ │ ├── NutritionAdapter.java │ │ │ ├── NutritionViewHolder.java │ │ │ ├── PagerAdapter.java │ │ │ ├── ProfileFragment.java │ │ │ ├── ProgressFragment.java │ │ │ ├── Recipe.java │ │ │ ├── RecipeActivity.java │ │ │ ├── RecipeAdapter.java │ │ │ ├── RecipeInfoActivity.java │ │ │ ├── RecipeNoAddAdapter.java │ │ │ ├── RecipeViewHolder.java │ │ │ ├── RegisteringAccountProfile.java │ │ │ ├── Registration.java │ │ │ ├── SearchRecipeActivity.java │ │ │ ├── SharedGlobals.java │ │ │ ├── StatisticsFragment.java │ │ │ ├── User.java │ │ │ ├── WeekyLog.java │ │ │ ├── onboarding2.java │ │ │ └── storyboard1.java │ └── res │ │ ├── drawable-hdpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── drawable-hdpi │ │ │ ├── calendar_icon.png │ │ │ ├── countdown.png │ │ │ ├── leftarrow.png │ │ │ └── mask_group_8.png │ │ ├── drawable-ldpi │ │ │ ├── calendar_icon.png │ │ │ ├── countdown.png │ │ │ ├── leftarrow.png │ │ │ └── mask_group_8.png │ │ ├── drawable-mdpi │ │ │ ├── calendar_icon.png │ │ │ ├── countdown.png │ │ │ ├── group_54.png │ │ │ ├── leftarrow.png │ │ │ └── mask_group_8.png │ │ ├── drawable-xhdpi │ │ │ ├── calendar_icon.png │ │ │ ├── countdown.png │ │ │ ├── leftarrow.png │ │ │ └── mask_group_8.png │ │ ├── drawable-xxxhdpi │ │ │ ├── calendar_icon.png │ │ │ ├── countdown.png │ │ │ ├── leftarrow.png │ │ │ └── mask_group_8.png │ │ ├── drawable_hdpi │ │ │ └── settings.png │ │ ├── drawable_ldpi │ │ │ └── settings.png │ │ ├── drawable_mdpi │ │ │ └── settings.png │ │ ├── drawable_xhdpi │ │ │ └── settings.png │ │ ├── drawable_xxhdpi │ │ │ └── settings.png │ │ ├── drawable_xxxhdpi │ │ │ └── settings.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── kalesoup.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── right_arrow.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable-ldpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable-mdpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── group_54.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── right_arrow.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── right_arrow.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable-xxhdpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── right_arrow.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable-xxxhdpi │ │ ├── active_fav.png │ │ ├── active_home.png │ │ ├── active_menu.png │ │ ├── active_set.png │ │ ├── active_track.png │ │ ├── add_food.png │ │ ├── add_icon.png │ │ ├── add_image.png │ │ ├── add_recipe_btn.png │ │ ├── add_water.png │ │ ├── background.png │ │ ├── black_arrow.png │ │ ├── btn_dialog_next.png │ │ ├── btn_gender_female.png │ │ ├── btn_gender_male.png │ │ ├── calendar_icon.png │ │ ├── countdown.png │ │ ├── ctsu.png │ │ ├── dialog_button_fri_active.png │ │ ├── dialog_button_fri_inactive.png │ │ ├── dialog_button_mon_active.png │ │ ├── dialog_button_mon_inactive.png │ │ ├── dialog_button_sat_active.png │ │ ├── dialog_button_sat_inactive.png │ │ ├── dialog_button_sun_active.png │ │ ├── dialog_button_sun_inactive.png │ │ ├── dialog_button_thurs_active.png │ │ ├── dialog_button_thurs_inactive.png │ │ ├── dialog_button_tue_active.png │ │ ├── dialog_button_tue_inactive.png │ │ ├── dialog_button_wed_active.png │ │ ├── dialog_button_wed_inactive.png │ │ ├── eighteen.png │ │ ├── event.png │ │ ├── female.png │ │ ├── fifteen.png │ │ ├── food_log_bg.png │ │ ├── gender_card.png │ │ ├── goal_be_healthier.png │ │ ├── goal_gain_weight.png │ │ ├── goal_lose_weight.png │ │ ├── icon_add_food.png │ │ ├── icon_add_water.png │ │ ├── inactive_fav.png │ │ ├── inactive_home.png │ │ ├── inactive_menu.png │ │ ├── inactive_set.png │ │ ├── inactive_track.png │ │ ├── instructions_tick.png │ │ ├── male.png │ │ ├── mask_group_7.png │ │ ├── mask_group_8.png │ │ ├── masked_group_14.png │ │ ├── next_7_days.png │ │ ├── next_button_active.png │ │ ├── next_button_inactive.png │ │ ├── onboarding_progress_2.png │ │ ├── profile.png │ │ ├── right_arrow.png │ │ ├── search_icon.png │ │ ├── searching_icon.png │ │ ├── seventeen.png │ │ ├── sixteen.png │ │ ├── sparkle.png │ │ ├── statistics.png │ │ ├── swipeup.png │ │ ├── undraw_wishes_icyp.png │ │ └── whisk.png │ │ ├── drawable │ │ ├── add_recipe_btn.png │ │ ├── app_logo.png │ │ ├── bottom_navigation_colors.xml │ │ ├── calendar_icon.png │ │ ├── dialog_btn_active.xml │ │ ├── dialog_btn_inactive.xml │ │ ├── difficultyhashtag.xml │ │ ├── dismissable_rectangle.xml │ │ ├── femenine.png │ │ ├── heart_fav_inactive.png │ │ ├── highlighter.xml │ │ ├── ic_graphic_eq_white_24dp.xml │ │ ├── ic_home_white_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_person_white_24dp.xml │ │ ├── introduction_notification.xml │ │ ├── loginbutton.xml │ │ ├── masculine.png │ │ ├── mealtypehashtag.xml │ │ ├── peach_rounded_button.xml │ │ ├── quantitybuttons.xml │ │ ├── recipe_info_btm_btn_active.xml │ │ ├── recipe_info_btm_btn_inactive.xml │ │ ├── rightarrow.png │ │ ├── select_goal_arrow.png │ │ ├── signupbutton.xml │ │ ├── temp_icon.jpeg │ │ ├── timehashtag.xml │ │ └── white_rectangle.xml │ │ ├── font │ │ ├── avenir_black.ttf │ │ ├── avenir_black_oblique.ttf │ │ ├── avenir_book.ttf │ │ ├── avenir_book_oblique.ttf │ │ ├── avenir_heavy.ttf │ │ ├── avenir_heavy_oblique.ttf │ │ ├── avenir_light.ttf │ │ ├── avenir_light_oblique.ttf │ │ ├── avenir_medium.ttf │ │ ├── avenir_medium_oblique.ttf │ │ ├── avenir_oblique.ttf │ │ ├── avenir_roman.ttf │ │ ├── cerebri_sans_bold.ttf │ │ ├── cerebri_sans_bolditalic.ttf │ │ ├── cerebri_sans_book.ttf │ │ ├── cerebri_sans_bookitalic.ttf │ │ ├── cerebri_sans_extrabold.ttf │ │ ├── cerebri_sans_extrabolditalic.ttf │ │ ├── cerebri_sans_heavy.ttf │ │ ├── cerebri_sans_heavyitalic.ttf │ │ ├── cerebri_sans_italic.ttf │ │ ├── cerebri_sans_light.ttf │ │ ├── cerebri_sans_lightitalic.ttf │ │ ├── cerebri_sans_medium.ttf │ │ ├── cerebri_sans_regular.ttf │ │ ├── cerebri_sans_semibold.ttf │ │ ├── cerebri_sans_semibolditalic.ttf │ │ ├── comfortaa.xml │ │ └── comfortaa_light.xml │ │ ├── layout │ │ ├── activity_choose_goal.xml │ │ ├── activity_choose_login_register.xml │ │ ├── activity_continue_to_sign_up.xml │ │ ├── activity_gender_selection.xml │ │ ├── activity_hello_page.xml │ │ ├── activity_home.xml │ │ ├── activity_input_age.xml │ │ ├── activity_input_height.xml │ │ ├── activity_input_unit.xml │ │ ├── activity_input_weight.xml │ │ ├── activity_login.xml │ │ ├── activity_onboarding2.xml │ │ ├── activity_recipe.xml │ │ ├── activity_recipe_info.xml │ │ ├── activity_registration.xml │ │ ├── activity_search_recipe.xml │ │ ├── activity_storyboard1.xml │ │ ├── activity_weeky_log.xml │ │ ├── bottom_sheet_drinklog.xml │ │ ├── bottom_sheet_foodlog.xml │ │ ├── fragment_add_custom_recipe.xml │ │ ├── fragment_favourites_.xml │ │ ├── fragment_feed.xml │ │ ├── fragment_feed_home.xml │ │ ├── fragment_feed_popular.xml │ │ ├── fragment_graph.xml │ │ ├── fragment_menu.xml │ │ ├── fragment_profile.xml │ │ ├── fragment_progress.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_statistics.xml │ │ ├── ingredientsviewholder.xml │ │ ├── instructionsviewholder.xml │ │ ├── logdialog.xml │ │ ├── nutritionviewholder.xml │ │ ├── recipenoaddviewholder.xml │ │ ├── recipeviewholder.xml │ │ ├── testcalendar.xml │ │ └── testrecipeinfo.xml │ │ ├── menu │ │ └── bottom_navigation_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── colors.xml │ │ ├── font_certs.xml │ │ ├── ic_launcher_background.xml │ │ ├── preloaded_fonts.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── searchable.xml │ └── test │ └── java │ └── com │ └── kevintoh0305gmail │ └── gastronome │ └── ExampleUnitTest.java ├── assets ├── INFORMATION.rtf ├── fonts │ └── Cerebri-Sans │ │ ├── CerebriSans-Bold.ttf │ │ ├── CerebriSans-BoldItalic.ttf │ │ ├── CerebriSans-Book.ttf │ │ ├── CerebriSans-BookItalic.ttf │ │ ├── CerebriSans-ExtraBold.ttf │ │ ├── CerebriSans-ExtraBoldItalic.ttf │ │ ├── CerebriSans-Heavy.ttf │ │ ├── CerebriSans-HeavyItalic.ttf │ │ ├── CerebriSans-Italic.ttf │ │ ├── CerebriSans-Light.ttf │ │ ├── CerebriSans-LightItalic.ttf │ │ ├── CerebriSans-Medium.ttf │ │ ├── CerebriSans-Regular.ttf │ │ ├── CerebriSans-SemiBold.ttf │ │ └── CerebriSans-SemiBoldItalic.ttf ├── gastronome_ui.xd └── images │ ├── extras │ ├── drawable-hdpi │ │ └── sparkle.png │ ├── drawable-ldpi │ │ └── sparkles.png │ ├── drawable-mdpi │ │ └── sparkles.png │ ├── drawable-xhdpi │ │ └── sparkles.png │ ├── drawable-xxhdpi │ │ └── sparkles.png │ └── drawable-xxxhdpi │ │ └── sparkles.png │ ├── login-reg │ ├── drawable-hdpi │ │ ├── Tick.png │ │ ├── background.png │ │ └── wishes.png │ ├── drawable-ldpi │ │ ├── Tick.png │ │ ├── background.png │ │ └── wishes.png │ ├── drawable-mdpi │ │ ├── Tick.png │ │ ├── background.png │ │ └── wishes.png │ ├── drawable-xhdpi │ │ ├── Tick.png │ │ ├── background.png │ │ └── wishes.png │ ├── drawable-xxhdpi │ │ ├── Tick.png │ │ ├── background.png │ │ └── wishes.png │ └── drawable-xxxhdpi │ │ ├── Tick.png │ │ ├── background.png │ │ ├── photothumb.db │ │ └── wishes.png │ └── onboarding │ ├── drawable-hdpi │ └── Eating Together.png │ ├── drawable-ldpi │ └── Eating Together.png │ ├── drawable-mdpi │ └── Eating Together.png │ ├── drawable-xhdpi │ └── Eating Together.png │ ├── drawable-xxhdpi │ └── Eating Together.png │ └── drawable-xxxhdpi │ └── Eating Together.png ├── gastronome.png ├── gastronome.py ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/kevintoh0305gmail/gastronome/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/androidTest/java/com/kevintoh0305gmail/gastronome/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Black.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-BlackOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-BlackOblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Book.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-BookOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-BookOblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Heavy.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-HeavyOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-HeavyOblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-LightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-LightOblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-MediumOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-MediumOblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Oblique.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Avenir-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/Avenir-Roman.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Bold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-BoldItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Book.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-BookItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-ExtraBold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Heavy.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-HeavyItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Italic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-LightItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-SemiBold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CerebriSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/assets/fonts/CerebriSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/AddCustomRecipeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/AddCustomRecipeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/BottomSheetDrinkLogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/BottomSheetDrinkLogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/BottomSheetFoodLogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/BottomSheetFoodLogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/ChooseGoal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/ChooseGoal.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/ChooseLoginRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/ChooseLoginRegister.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/ContinueToSignUp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/ContinueToSignUp.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/DrinkLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/DrinkLog.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FavRecipesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FavRecipesAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Favourites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Favourites.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FavouritesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FavouritesFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Favourites_Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Favourites_Activity.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FeedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FeedFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FeedHomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FeedHomeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FeedPopularFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FeedPopularFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/FoodLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/FoodLog.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/GenderSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/GenderSelection.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/HelloPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/HelloPage.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Home.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Home.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/IngredientsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/IngredientsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/IngredientsViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/IngredientsViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InputAge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InputAge.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InputHeight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InputHeight.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InputUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InputUnit.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InputWeight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InputWeight.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InstructionsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InstructionsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/InstructionsViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/InstructionsViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/LogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/LogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Login.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Logs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Logs.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/MenuFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/MenuFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/NutritionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/NutritionAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/NutritionViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/NutritionViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/PagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/PagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/ProfileFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/ProfileFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/ProgressFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/ProgressFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Recipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Recipe.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeInfoActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeNoAddAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeNoAddAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RecipeViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/RegisteringAccountProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/RegisteringAccountProfile.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/Registration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/Registration.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/SearchRecipeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/SearchRecipeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/SharedGlobals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/SharedGlobals.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/StatisticsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/StatisticsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/User.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/WeekyLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/WeekyLog.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/onboarding2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/onboarding2.java -------------------------------------------------------------------------------- /app/src/main/java/com/kevintoh0305gmail/gastronome/storyboard1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/java/com/kevintoh0305gmail/gastronome/storyboard1.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-hdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-hdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-hdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-hdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-hdpi/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-hdpi/leftarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-hdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-hdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-ldpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-ldpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-ldpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-ldpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-ldpi/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-ldpi/leftarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-ldpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-ldpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-mdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-mdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-mdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-mdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-mdpi/group_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-mdpi/group_54.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-mdpi/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-mdpi/leftarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-mdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-mdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xhdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xhdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xhdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xhdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xhdpi/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xhdpi/leftarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xhdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xhdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xxxhdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xxxhdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xxxhdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xxxhdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xxxhdpi/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xxxhdpi/leftarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable-xxxhdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable-xxxhdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_hdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_hdpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_ldpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_ldpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_mdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_mdpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_xhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_xhdpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_xxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_xxhdpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawable_xxxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/drawable_xxxhdpi/settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/kalesoup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/kalesoup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/right_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-hdpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-ldpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/group_54.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/right_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-mdpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/right_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xhdpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/right_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxhdpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/active_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/active_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/active_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/active_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/active_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/active_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/active_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/active_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/active_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/black_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/black_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/btn_dialog_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/btn_dialog_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/btn_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/btn_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/btn_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/btn_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/countdown.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ctsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/ctsu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_fri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_fri_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_fri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_fri_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_mon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_mon_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_mon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_mon_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_sat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_sat_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_sat_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_sat_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_sun_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_sun_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_sun_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_sun_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_thurs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_thurs_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_thurs_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_thurs_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_tue_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_tue_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_tue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_tue_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_wed_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_wed_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/dialog_button_wed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/dialog_button_wed_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/eighteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/eighteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/female.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/fifteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/fifteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/food_log_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/food_log_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/gender_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/gender_card.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/goal_be_healthier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/goal_be_healthier.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/goal_gain_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/goal_gain_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/goal_lose_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/goal_lose_weight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/icon_add_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/icon_add_food.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/icon_add_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/icon_add_water.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/inactive_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/inactive_fav.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/inactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/inactive_home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/inactive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/inactive_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/inactive_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/inactive_set.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/inactive_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/inactive_track.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/instructions_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/instructions_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/male.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mask_group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/mask_group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mask_group_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/mask_group_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/masked_group_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/masked_group_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/next_7_days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/next_7_days.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/next_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/next_button_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/next_button_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/next_button_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/onboarding_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/onboarding_progress_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/right_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/search_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/searching_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/searching_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/seventeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/seventeen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/sixteen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/sparkle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/statistics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/swipeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/swipeup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/undraw_wishes_icyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/undraw_wishes_icyp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/whisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable-xxxhdpi/whisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/add_recipe_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/add_recipe_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_navigation_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/bottom_navigation_colors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/calendar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_btn_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/dialog_btn_active.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_btn_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/dialog_btn_inactive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/difficultyhashtag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/difficultyhashtag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/dismissable_rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/dismissable_rectangle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/femenine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/femenine.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart_fav_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/heart_fav_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/highlighter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/highlighter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_graphic_eq_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/ic_graphic_eq_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_home_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/ic_home_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/ic_person_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/introduction_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/introduction_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/loginbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/loginbutton.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/masculine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/masculine.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mealtypehashtag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/mealtypehashtag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/peach_rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/peach_rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/quantitybuttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/quantitybuttons.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/recipe_info_btm_btn_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/recipe_info_btm_btn_active.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/recipe_info_btm_btn_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/recipe_info_btm_btn_inactive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/rightarrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/select_goal_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/select_goal_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signupbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/signupbutton.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/temp_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/temp_icon.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/timehashtag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/timehashtag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/drawable/white_rectangle.xml -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_black_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_black_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_book.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_book_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_book_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_heavy.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_heavy_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_heavy_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_light_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_light_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_medium_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_medium_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_oblique.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/avenir_roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/avenir_roman.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_bolditalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_book.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_bookitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_bookitalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_extrabold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_extrabolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_extrabolditalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_heavy.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_heavyitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_heavyitalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_lightitalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cerebri_sans_semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/cerebri_sans_semibolditalic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/comfortaa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/comfortaa.xml -------------------------------------------------------------------------------- /app/src/main/res/font/comfortaa_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/font/comfortaa_light.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_choose_goal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_choose_goal.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_choose_login_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_choose_login_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_continue_to_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_continue_to_sign_up.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gender_selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_gender_selection.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_hello_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_hello_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_input_age.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_input_age.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_input_height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_input_height.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_input_unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_input_unit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_input_weight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_input_weight.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_onboarding2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_onboarding2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_recipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_recipe.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_recipe_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_recipe_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_registration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_registration.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_search_recipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_search_recipe.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_storyboard1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_storyboard1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_weeky_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/activity_weeky_log.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bottom_sheet_drinklog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/bottom_sheet_drinklog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bottom_sheet_foodlog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/bottom_sheet_foodlog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_add_custom_recipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_add_custom_recipe.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_favourites_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_favourites_.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_feed.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_feed_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_feed_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_feed_popular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_feed_popular.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_progress.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_statistics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/fragment_statistics.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ingredientsviewholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/ingredientsviewholder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/instructionsviewholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/instructionsviewholder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/logdialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/logdialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nutritionviewholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/nutritionviewholder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/recipenoaddviewholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/recipenoaddviewholder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/recipeviewholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/recipeviewholder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/testcalendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/testcalendar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/testrecipeinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/layout/testrecipeinfo.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/menu/bottom_navigation_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/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/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /app/src/test/java/com/kevintoh0305gmail/gastronome/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/app/src/test/java/com/kevintoh0305gmail/gastronome/ExampleUnitTest.java -------------------------------------------------------------------------------- /assets/INFORMATION.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/INFORMATION.rtf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Book.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-BookItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Heavy.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-HeavyItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Cerebri-Sans/CerebriSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/fonts/Cerebri-Sans/CerebriSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/gastronome_ui.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/gastronome_ui.xd -------------------------------------------------------------------------------- /assets/images/extras/drawable-hdpi/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-hdpi/sparkle.png -------------------------------------------------------------------------------- /assets/images/extras/drawable-ldpi/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-ldpi/sparkles.png -------------------------------------------------------------------------------- /assets/images/extras/drawable-mdpi/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-mdpi/sparkles.png -------------------------------------------------------------------------------- /assets/images/extras/drawable-xhdpi/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-xhdpi/sparkles.png -------------------------------------------------------------------------------- /assets/images/extras/drawable-xxhdpi/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-xxhdpi/sparkles.png -------------------------------------------------------------------------------- /assets/images/extras/drawable-xxxhdpi/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/extras/drawable-xxxhdpi/sparkles.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-hdpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-hdpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-hdpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-hdpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-hdpi/wishes.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-ldpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-ldpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-ldpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-ldpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-ldpi/wishes.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-mdpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-mdpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-mdpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-mdpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-mdpi/wishes.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xhdpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xhdpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xhdpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xhdpi/wishes.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxhdpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxhdpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxhdpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxhdpi/wishes.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxxhdpi/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxxhdpi/Tick.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxxhdpi/photothumb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxxhdpi/photothumb.db -------------------------------------------------------------------------------- /assets/images/login-reg/drawable-xxxhdpi/wishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/login-reg/drawable-xxxhdpi/wishes.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-hdpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-hdpi/Eating Together.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-ldpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-ldpi/Eating Together.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-mdpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-mdpi/Eating Together.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-xhdpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-xhdpi/Eating Together.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-xxhdpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-xxhdpi/Eating Together.png -------------------------------------------------------------------------------- /assets/images/onboarding/drawable-xxxhdpi/Eating Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/assets/images/onboarding/drawable-xxxhdpi/Eating Together.png -------------------------------------------------------------------------------- /gastronome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gastronome.png -------------------------------------------------------------------------------- /gastronome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gastronome.py -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gastronomecc/gastronome-app/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------