Successfully modified file: /home/Messier82/projects/service-book/TESTING_SETUP.md (1 replacements). Here is the updated code: ... The exception is the Play Store marketing suite in `app/src/androidTest/java/com/yorvana/screenshots/`. It is intentionally instrumented because store assets should use real platform rendering and native device dimensions. The suite captures PNGs from the emulator display into the managed device additional-output directory. ### High-Fidelity Screenshots (Release Build) By default, `generateStoreScreenshots` runs against the **debug** variant for speed and stability. To generate production-representative assets from the minified **release** build (hiding developer settings and matching production UI exactly), use the `-PscreenshotBuild` flag: ```bash ./gradlew generateStoreScreenshots -PscreenshotBuild ``` This task runs only the `com.yorvana.screenshots` package on the three API 34 store devices and copies the generated PNGs into `distribution/store-assets/screenshots/{phone,tablet-7,tablet-10}/`. The ...