============================================
  WHERE TO PUT APK FILES (same place for all apps)
============================================

All downloadable APKs live in the ROOT of the "wfapp" folder AFTER you
deploy — the same folder as index.html on your server, for example:

   wfapp/TADApp.apk
   wfapp/SupraDeliveryApp.apk
   wfapp/EmploiDeliveryApp.apk

To get them there, you do NOT drop files only into "wfapp" in the project
by hand (that folder is replaced every time you run deploy). Instead:

1. ON YOUR COMPUTER (before building):

   Put each .apk in the "public" folder (same folder as this file).

   Examples:
   f:\nextjs-projects\WFapp\public\TADApp.apk
   f:\nextjs-projects\WFapp\public\SupraDeliveryApp.apk
   f:\nextjs-projects\WFapp\public\EmploiDeliveryApp.apk


2. RUN THE BUILD:

   npm run deploy

   Next.js copies everything from "public" into the build output, then
   scripts/prepare-deploy.js copies that output into the project folder
   "wfapp". So on your PC you will see the APKs at:

   wfapp\TADApp.apk
   wfapp\SupraDeliveryApp.apk
   wfapp\EmploiDeliveryApp.apk   (if you added it to public)

   Same level as wfapp\index.html — inside the wfapp folder, like the
   other APKs.


3. ON YOUR WEB SERVER (aenterprise.biz):

   Upload the ENTIRE contents of the local "wfapp" folder
   to your server's "wfapp" folder.

   So on the server you must have:
   wfapp/TADApp.apk
   wfapp/SupraDeliveryApp.apk
   wfapp/EmploiDeliveryApp.apk   (when you ship that app)
   wfapp/index.html
   wfapp/_next/   (folder with CSS and JS)
   wfapp/downloads/
   etc.

   If an APK is missing from the wfapp folder on the server, that
   download link will not work.


4. CHECK:

   After upload, open in browser (examples):
   https://aenterprise.biz/wfapp/TADApp.apk
   https://aenterprise.biz/wfapp/EmploiDeliveryApp.apk

   If that URL downloads the file, the matching Download
   button on the site will work too.

============================================
