├── .gitignore ├── .idea ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── pluralsight │ │ └── com │ │ └── codingwithmitchstore │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── pluralsight │ │ │ └── com │ │ │ └── codingwithmitchstore │ │ │ ├── MainActivity.java │ │ │ ├── MainRecyclerViewAdapter.java │ │ │ ├── ViewProductActivity.java │ │ │ ├── ViewProductFragment.java │ │ │ ├── models │ │ │ └── Product.java │ │ │ ├── resources │ │ │ ├── ProductHeaders.java │ │ │ └── Products.java │ │ │ └── util │ │ │ ├── BigDecimalUtil.java │ │ │ └── CartManger.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_cart_white.png │ │ ├── ic_dollar_sign_orange.png │ │ ├── ic_plus_white.png │ │ ├── ic_up_arrow_white.png │ │ └── ic_x_white.png │ │ ├── drawable-mdpi │ │ ├── ic_cart_white.png │ │ ├── ic_dollar_sign_orange.png │ │ ├── ic_plus_white.png │ │ ├── ic_up_arrow_white.png │ │ └── ic_x_white.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── ic_cart_white.png │ │ ├── ic_dollar_sign_orange.png │ │ ├── ic_plus_white.png │ │ ├── ic_up_arrow_white.png │ │ └── ic_x_white.png │ │ ├── drawable-xxhdpi │ │ ├── ic_cart_white.png │ │ ├── ic_dollar_sign_orange.png │ │ ├── ic_plus_white.png │ │ ├── ic_up_arrow_white.png │ │ └── ic_x_white.png │ │ ├── drawable │ │ ├── blue_onclick_dark.xml │ │ ├── blue_rounded_button.xml │ │ ├── cell_phone_case_1.jpg │ │ ├── cell_phone_case_2.jpg │ │ ├── grey_border_bottom.xml │ │ ├── grey_rounded_button.xml │ │ ├── half_sleeve_shirt_blue.jpg │ │ ├── half_sleeve_shirt_grey.jpg │ │ ├── half_sleeve_shirt_red.jpg │ │ ├── half_sleeve_shirt_white.jpg │ │ ├── hoody_asphalt.jpg │ │ ├── hoody_black.jpg │ │ ├── hoody_grey.jpg │ │ ├── hoody_navy.jpg │ │ ├── hoody_purple.jpg │ │ ├── ic_launcher_background.xml │ │ ├── mug_11oz.jpg │ │ ├── mug_15oz.jpg │ │ ├── snapback.jpg │ │ ├── snapback_black.jpg │ │ ├── snapback_camo.jpg │ │ ├── snapback_grey.jpg │ │ ├── snapback_navy.jpg │ │ ├── snapback_red.jpg │ │ ├── snapback_teal.jpg │ │ ├── t_shirt_black.jpg │ │ ├── t_shirt_grey.jpg │ │ ├── t_shirt_navy.jpg │ │ ├── t_shirt_red.jpg │ │ ├── t_shirt_white.jpg │ │ ├── tab_indicator_default.xml │ │ ├── tab_indicator_selected.xml │ │ ├── tab_selector.xml │ │ ├── tank.jpg │ │ ├── tank_black.jpg │ │ ├── tank_grey.jpg │ │ ├── tank_light_blue.jpg │ │ ├── tank_navy.jpg │ │ ├── tank_white.jpg │ │ ├── trucker_hat.jpg │ │ ├── trucker_hat_baige.jpg │ │ ├── trucker_hat_black.jpg │ │ ├── trucker_hat_navy.jpg │ │ └── trucker_hat_white.jpg │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_view_product.xml │ │ ├── fragment_view_product.xml │ │ └── main_feed_list_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── pluralsight │ └── com │ └── codingwithmitchstore │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/pluralsight/com/codingwithmitchstore/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/androidTest/java/pluralsight/com/codingwithmitchstore/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/MainRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/MainRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/ViewProductActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/ViewProductActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/ViewProductFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/ViewProductFragment.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/models/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/models/Product.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/resources/ProductHeaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/resources/ProductHeaders.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/resources/Products.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/resources/Products.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/util/BigDecimalUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/util/BigDecimalUtil.java -------------------------------------------------------------------------------- /app/src/main/java/pluralsight/com/codingwithmitchstore/util/CartManger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/java/pluralsight/com/codingwithmitchstore/util/CartManger.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-hdpi/ic_cart_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_dollar_sign_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-hdpi/ic_dollar_sign_orange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-hdpi/ic_plus_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_up_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-hdpi/ic_up_arrow_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_x_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-hdpi/ic_x_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-mdpi/ic_cart_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_dollar_sign_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-mdpi/ic_dollar_sign_orange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-mdpi/ic_plus_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_up_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-mdpi/ic_up_arrow_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_x_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-mdpi/ic_x_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xhdpi/ic_cart_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_dollar_sign_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xhdpi/ic_dollar_sign_orange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xhdpi/ic_plus_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_up_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xhdpi/ic_up_arrow_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_x_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xhdpi/ic_x_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xxhdpi/ic_cart_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_dollar_sign_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xxhdpi/ic_dollar_sign_orange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xxhdpi/ic_plus_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_up_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xxhdpi/ic_up_arrow_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_x_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable-xxhdpi/ic_x_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_onclick_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/blue_onclick_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/blue_rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cell_phone_case_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/cell_phone_case_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/cell_phone_case_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/cell_phone_case_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_border_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/grey_border_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/grey_rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/half_sleeve_shirt_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/half_sleeve_shirt_blue.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/half_sleeve_shirt_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/half_sleeve_shirt_grey.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/half_sleeve_shirt_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/half_sleeve_shirt_red.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/half_sleeve_shirt_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/half_sleeve_shirt_white.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hoody_asphalt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/hoody_asphalt.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hoody_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/hoody_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hoody_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/hoody_grey.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hoody_navy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/hoody_navy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hoody_purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/hoody_purple.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/mug_11oz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/mug_11oz.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/mug_15oz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/mug_15oz.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_camo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_camo.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_grey.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_navy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_navy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_red.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/snapback_teal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/snapback_teal.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t_shirt_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/t_shirt_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t_shirt_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/t_shirt_grey.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t_shirt_navy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/t_shirt_navy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t_shirt_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/t_shirt_red.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t_shirt_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/t_shirt_white.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_indicator_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tab_indicator_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_indicator_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tab_indicator_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tab_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank_grey.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank_light_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank_light_blue.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank_navy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank_navy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tank_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/tank_white.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/trucker_hat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/trucker_hat.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/trucker_hat_baige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/trucker_hat_baige.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/trucker_hat_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/trucker_hat_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/trucker_hat_navy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/trucker_hat_navy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/trucker_hat_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/drawable/trucker_hat_white.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_view_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/layout/activity_view_product.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_view_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/layout/fragment_view_product.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_feed_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/layout/main_feed_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/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/mitchtabian/CodingWithMitchStore/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/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/pluralsight/com/codingwithmitchstore/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/app/src/test/java/pluralsight/com/codingwithmitchstore/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchStore/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------