Instructions for Deploying the App to Production
Production Settings:
Update the configuration file to point to the production backends
e.g., gwpay-prod.first-tech.net
.Ensure that logs are set to the appropriate level, avoiding unnecessary exposure of sensitive information.
Open a ticket with First Tech, providing the Package Name, SHA-256, and Version Code of the product for production enablement. This process may take 5 to 7 days, so we recommend opening the ticket as soon as these details are available to streamline the deployment.
To obtain this information:
Package Name: This information can be found in the build.gradle
file of your app's module.
Variable path: android >> defaultConfig >> applicationId

applicationId
and versionCode
Variables in the Build.Gradle FileSHA-256: This information can be obtained from the Google Play Console:
Access the application's page

Access the menu
Navigate to Test & Release >> Setup >> App Signing

In the "App Signing Key Certificate" section:
The SHA-256 hash can be found in the "SHA-256 Certificate Fingerprint" field.

Version Code: This can be found in the build.gradle
file of your app's module.
Variable path: android >> defaultConfig >> versionCode

Last updated