├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── morristaedt │ │ └── mirror │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── morristaedt │ │ └── mirror │ │ ├── MirrorActivity.java │ │ ├── MirrorApplication.java │ │ ├── SetUpActivity.java │ │ ├── configuration │ │ └── ConfigurationSettings.java │ │ ├── modules │ │ ├── BirthdayModule.java │ │ ├── CalendarModule.java │ │ ├── ChoresModule.java │ │ ├── CountdownModule.java │ │ ├── DayModule.java │ │ ├── ForecastModule.java │ │ ├── MoodModule.java │ │ ├── NewsModule.java │ │ ├── TimeModule.java │ │ ├── TrainScheduleModule.java │ │ ├── XKCDModule.java │ │ └── YahooFinanceModule.java │ │ ├── receiver │ │ └── AlarmReceiver.java │ │ ├── requests │ │ ├── ForecastRequest.java │ │ ├── ForecastResponse.java │ │ ├── OpenWeatherRequest.java │ │ ├── OpenWeatherResponse.java │ │ ├── XKCDRequest.java │ │ ├── XKCDResponse.java │ │ ├── YahooFinanceRequest.java │ │ └── YahooStockResponse.java │ │ └── utils │ │ └── WeekUtil.java │ └── res │ ├── drawable-hdpi │ ├── air_plant.png │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── bike.png │ ├── f_train.png │ ├── grocery_bag.png │ ├── icon.png │ ├── smile.png │ ├── stock.png │ └── umbrella.png │ ├── drawable-sw600dp-hdpi │ ├── air_plant.png │ ├── bike.png │ ├── f_train.png │ ├── grocery_bag.png │ ├── smile.png │ ├── stock.png │ └── umbrella.png │ ├── drawable-sw600dp-mdpi │ ├── air_plant.png │ ├── bike.png │ ├── f_train.png │ ├── grocery_bag.png │ ├── smile.png │ ├── stock.png │ └── umbrella.png │ ├── drawable-sw600dp-xhdpi │ ├── air_plant.png │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── bike.png │ ├── f_train.png │ ├── grocery_bag.png │ ├── smile.png │ ├── stock.png │ └── umbrella.png │ ├── drawable-xhdpi │ ├── air_plant.png │ ├── bike.png │ ├── f_train.png │ ├── grocery_bag.png │ ├── icon.png │ ├── smile.png │ ├── stock.png │ └── umbrella.png │ ├── drawable │ ├── apptheme_btn_check_holo_dark.xml │ └── apptheme_btn_radio_holo_dark.xml │ ├── layout-v17 │ └── clock.xml │ ├── layout │ ├── activity_configuration.xml │ ├── activity_mirror.xml │ └── clock.xml │ ├── values-sw600dp │ ├── dimens.xml │ └── strings.xml │ ├── values-v21 │ └── styles.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── design ├── HomeMirror.png ├── HomeMirror.sketch ├── IMG_20150825_191621.jpg ├── IMG_20150911_110449-2.jpg ├── IMG_20151121_183522 (1).jpg ├── assets │ ├── air_plant_10.png │ ├── air_plant_15.png │ ├── air_plant_20.png │ ├── bike_10.png │ ├── bike_15.png │ ├── bike_20.png │ ├── f_train_10.png │ ├── f_train_15.png │ ├── f_train_20.png │ ├── grocery_bag_10.png │ ├── grocery_bag_15.png │ ├── grocery_bag_20.png │ ├── stock_10.png │ ├── stock_15.png │ ├── stock_20.png │ ├── umbrella_10.png │ ├── umbrella_15.png │ └── umbrella_20.png ├── install_assets.sh └── thumbs_up_mirror.jpg ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/morristaedt/mirror/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/androidTest/java/com/morristaedt/mirror/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/MirrorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/MirrorActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/MirrorApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/MirrorApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/SetUpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/SetUpActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/configuration/ConfigurationSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/configuration/ConfigurationSettings.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/BirthdayModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/BirthdayModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/CalendarModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/CalendarModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/ChoresModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/ChoresModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/CountdownModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/CountdownModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/DayModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/DayModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/ForecastModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/ForecastModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/MoodModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/MoodModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/NewsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/NewsModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/TimeModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/TimeModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/TrainScheduleModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/TrainScheduleModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/XKCDModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/XKCDModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/modules/YahooFinanceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/modules/YahooFinanceModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/receiver/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/receiver/AlarmReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/ForecastRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/ForecastRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/ForecastResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/ForecastResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/XKCDRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/XKCDRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/XKCDResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/XKCDResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/YahooFinanceRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/YahooFinanceRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/requests/YahooStockResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/requests/YahooStockResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/morristaedt/mirror/utils/WeekUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/java/com/morristaedt/mirror/utils/WeekUtil.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/air_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/air_plant.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/bike.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/f_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/f_train.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/grocery_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/grocery_bag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/smile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/stock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-hdpi/umbrella.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/air_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/air_plant.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/bike.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/f_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/f_train.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/grocery_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/grocery_bag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/smile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/stock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-hdpi/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-hdpi/umbrella.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/air_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/air_plant.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/bike.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/f_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/f_train.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/grocery_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/grocery_bag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/smile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/stock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-mdpi/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-mdpi/umbrella.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/air_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/air_plant.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/bike.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/f_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/f_train.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/grocery_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/grocery_bag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/smile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/stock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-sw600dp-xhdpi/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-sw600dp-xhdpi/umbrella.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/air_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/air_plant.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/bike.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/f_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/f_train.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/grocery_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/grocery_bag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/smile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/stock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable-xhdpi/umbrella.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_btn_check_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable/apptheme_btn_check_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_btn_radio_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/drawable/apptheme_btn_radio_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-v17/clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/layout-v17/clock.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/layout/activity_configuration.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_mirror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/layout/activity_mirror.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/layout/clock.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values-sw600dp/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /design/HomeMirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/HomeMirror.png -------------------------------------------------------------------------------- /design/HomeMirror.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/HomeMirror.sketch -------------------------------------------------------------------------------- /design/IMG_20150825_191621.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/IMG_20150825_191621.jpg -------------------------------------------------------------------------------- /design/IMG_20150911_110449-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/IMG_20150911_110449-2.jpg -------------------------------------------------------------------------------- /design/IMG_20151121_183522 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/IMG_20151121_183522 (1).jpg -------------------------------------------------------------------------------- /design/assets/air_plant_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/air_plant_10.png -------------------------------------------------------------------------------- /design/assets/air_plant_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/air_plant_15.png -------------------------------------------------------------------------------- /design/assets/air_plant_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/air_plant_20.png -------------------------------------------------------------------------------- /design/assets/bike_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/bike_10.png -------------------------------------------------------------------------------- /design/assets/bike_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/bike_15.png -------------------------------------------------------------------------------- /design/assets/bike_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/bike_20.png -------------------------------------------------------------------------------- /design/assets/f_train_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/f_train_10.png -------------------------------------------------------------------------------- /design/assets/f_train_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/f_train_15.png -------------------------------------------------------------------------------- /design/assets/f_train_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/f_train_20.png -------------------------------------------------------------------------------- /design/assets/grocery_bag_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/grocery_bag_10.png -------------------------------------------------------------------------------- /design/assets/grocery_bag_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/grocery_bag_15.png -------------------------------------------------------------------------------- /design/assets/grocery_bag_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/grocery_bag_20.png -------------------------------------------------------------------------------- /design/assets/stock_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/stock_10.png -------------------------------------------------------------------------------- /design/assets/stock_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/stock_15.png -------------------------------------------------------------------------------- /design/assets/stock_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/stock_20.png -------------------------------------------------------------------------------- /design/assets/umbrella_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/umbrella_10.png -------------------------------------------------------------------------------- /design/assets/umbrella_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/umbrella_15.png -------------------------------------------------------------------------------- /design/assets/umbrella_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/assets/umbrella_20.png -------------------------------------------------------------------------------- /design/install_assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/install_assets.sh -------------------------------------------------------------------------------- /design/thumbs_up_mirror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/design/thumbs_up_mirror.jpg -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannahMitt/HomeMirror/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------