├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── theindianappguy │ │ └── lampstoreapp │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── theindianappguy │ │ │ └── lampstoreapp │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-hdpi │ │ └── square_icon.png │ │ ├── drawable-ldpi │ │ └── square_icon.png │ │ ├── drawable-mdpi │ │ └── square_icon.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ └── square_icon.png │ │ ├── drawable-xxhdpi │ │ └── square_icon.png │ │ ├── drawable-xxxhdpi │ │ └── square_icon.png │ │ ├── drawable │ │ ├── grey_circular_border.xml │ │ ├── heart.png │ │ ├── heart_orange_fill.png │ │ ├── ic_launcher_background.xml │ │ ├── lamp.png │ │ ├── lamp2.png │ │ ├── lamp3.png │ │ ├── light_orange_circle.xml │ │ ├── star_clr.png │ │ ├── star_grey.png │ │ ├── violet_circular_border.xml │ │ └── white_circular_border.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── theindianappguy │ └── lampstoreapp │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Lamp Store App -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/theindianappguy/lampstoreapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/androidTest/java/com/theindianappguy/lampstoreapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/theindianappguy/lampstoreapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/java/com/theindianappguy/lampstoreapp/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-hdpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-ldpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-mdpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-xhdpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-xxhdpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/square_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable-xxxhdpi/square_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_circular_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/grey_circular_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/heart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart_orange_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/heart_orange_fill.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/lamp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/lamp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/lamp2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/lamp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/lamp3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/light_orange_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/light_orange_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/star_clr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/star_clr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/star_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/star_grey.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/violet_circular_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/violet_circular_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_circular_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/drawable/white_circular_border.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/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/theindianappguy/Lamp_Store_App_UI/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/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/theindianappguy/lampstoreapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/app/src/test/java/com/theindianappguy/lampstoreapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/Lamp_Store_App_UI/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Lamp Store App' 3 | --------------------------------------------------------------------------------