Ntrman - — Qa-apk

# 2️⃣ Install NTRMAN (if you haven’t globally) npm i -D ntrman # or `npm i -g ntrman`

# 3️⃣ Initialise NTRMAN config (creates ntrman.yml) ntrman init The generated looks like: NTRMAN - QA-APK

jobs: build-and-test: runs-on: ubuntu-latest container: image: node:18-alpine steps: - uses: actions/checkout@v4 # 2️⃣ Install NTRMAN (if you haven’t globally)

# ntrman.yml – top‑level configuration android: sdkVersion: "34" buildTools: "34.0.0" gradleWrapper: "./android/gradlew" keystore: path: "./keystores/release.jks" alias: "release-key" storePasswordEnv: "KEYSTORE_PASS" keyPasswordEnv: "KEY_ALIAS_PASS" NTRMAN - QA-APK

You can plug these into the section of the config and fail the pipeline if regressions exceed a configurable delta (e.g., > 10 % increase in startup time). 5. CI/CD Integration 5.1 GitHub Actions Example name: NTRMAN QA‑APK