Build: Simple Counter Screen
A screen with a counter that increments when a button is pressed. We will write an instrumented test to verify the button increments the counter correctly.
Target UI
--------------------- | Simple Counter | | | | Count: 0 | | | | [Increment] | ---------------------
Display a text showing current count starting at 0
Add a button labeled 'Increment'
When button is pressed, increase count by 1 and update text
Write an instrumented test that launches the activity, clicks the button, and checks the count text updates to 1