Pig Clicker Farm
OfflineOverview
Pig Clicker Farm is a small Android game built as a capstone-style school project. The focus is on a complete app loop: tapping mechanics, incremental rewards, UI screens, and persistence basics — all in Java with Android Studio.
Architecture
Classic single-app structure: Activities or Fragments for game and menus, game state held in memory with optional SharedPreferences for high scores. Touch events drive the core loop; layouts use XML with Material-style components where appropriate.
┌─────────────────┐
│ Main activity │
│ (tap / UI loop) │
└────────┬──────────┘
│ events
▼
┌─────────────────┐ ┌──────────────┐
│ Game state │────►│ Score / meta │
│ (Java model) │ │ (optional │
└─────────────────┘ │ persist) │
└──────────────┘Demo UI
Demo UI (Phase 2)
Technology stack
- Java
- Android
- XML
- Gradle