From a4aa458915850c7470d373c707104842027603c6 Mon Sep 17 00:00:00 2001 From: Abin Abraham <97458720+itsabinabraham@users.noreply.github.com> Date: Sun, 30 Oct 2022 23:35:25 +0530 Subject: [PATCH] Create Dice-Roller-App --- Projects/1-Beginner/Dice-Roller-App | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Projects/1-Beginner/Dice-Roller-App diff --git a/Projects/1-Beginner/Dice-Roller-App b/Projects/1-Beginner/Dice-Roller-App new file mode 100644 index 00000000..1b9bbdd0 --- /dev/null +++ b/Projects/1-Beginner/Dice-Roller-App @@ -0,0 +1,20 @@ +# Dice Roller App + +**Tier:** 1-Beginner + +The Dice Roller application is a simple-to-build application that sees the simulation of rolling a dice. Your task is to click on a button, which rolls the dice and generates a value from 1 to 6. It then displays the image of the dice on-screen, corresponding to the output generated from the roll. The image is updated everytime the button is clicked (dice is rolled). + +This simulates the effect of a rolling a dice via the application during the absence of a physical dice. + +## User Stories + +- [ ] User can press a button to roll the dice +- [ ] User can expect random values from 1 to 6 being generated + +## Useful links and resources + +- [Step by Step guide to developing the Dice Roller App](https://developer.android.com/courses/android-basics-kotlin/unit-1) + +## Example projects + +[Dice Roller App by Google Developers](https://github.com/google-developer-training/android-basics-kotlin-dice-roller-with-images-app-solution)