Validated the scaffold with a real local build (Android SDK via Android
Studio: platform 35 + build-tools 35.0.0); `./gradlew lint test assembleDebug`
now passes end-to-end and produces a debug APK. Two fixes it surfaced:
- ScaffoldSanityTest asserted BuildConfig.DEBUG, which fails under
testReleaseUnitTest (the `test` task runs both variants). Replace with a
variant-agnostic VERSION_NAME check.
- Remove the redundant android:label on MainActivity (inherits the application
label) — clears the RedundantLabel lint warning.
Co-Authored-By: Claude <noreply@anthropic.com>