Store screenshots
Store screenshots should come from the same app binary and target shell you are about to ship. Fission's LiveTest API can resize, navigate, wait for idle frames, and capture screenshots, which makes screenshots part of the release process instead of a manual afterthought.
Recommended flow
Build the target package or runnable binary.
Launch it with FISSION_TEST_CONTROL_PORT.
Seed deterministic state through test configuration or fixture-only test infrastructure.
Drive the app with semantic selectors.
Capture screenshots at store-required sizes.
Compare against goldens where appropriate.
Point release metadata at the approved image files.
curl -s http://127.0.0.1:9876/cmd -H 'content-type: application/json' -d '{"cmd":"Screenshot","path":"release/screenshots/android/phone-home.png"}'
Do not pad production UI with screenshot-only fixture data. Keep test fixtures in test infrastructure and make the production empty/error states explicit.