Replace per-player cards with a single card listing all players. Each player shows on one line: number, name, position, and birth year in muted color. Add Makefile with android and desktop targets.
8 lines
106 B
Makefile
8 lines
106 B
Makefile
.PHONY: android desktop
|
|
|
|
android:
|
|
./gradlew composeApp:assembleDebug
|
|
|
|
desktop:
|
|
./gradlew composeApp:run
|