Android Studio Guide by Deekay

How to open this Hello World project:

1. Open Android Studio.
2. Click File > Open.
3. Select the folder named HelloWorldDeekay.
4. Wait for Gradle Sync to finish.
5. If Android Studio asks to upgrade Gradle or plugins, accept the safe recommended update.
6. Create an emulator or connect your Android phone with USB debugging enabled.
7. Press Run.

What this project teaches:
- MainActivity.kt starts the app.
- setContent { } starts the Compose UI.
- HelloDeekayScreen() draws text and a button.
- remember + mutableStateOf stores a small counter value.
- When the button changes count, Compose redraws the text automatically.

Try this beginner exercise:
- Change "Hello Android Studio!" to your own text.
- Change the button label.
- Add another Text line.
- Run the app again.
