...
CI/CD should be enabled for your Android pre-prod build.
As part of the upload step, a mapping file should be included while uploading the app binary. This mapping file should be the same mapping file that was generated while building the
apk
binary in Android Studio. The location of the generated mapping file depends on your proguard settings in your Android project. The mapping file should be included as asourcemap
option in your CI/CD upload step as follows:Code Block $ curl -F file=@androidapp.apk -F sourcemap=@mapping.txt https://prod-dopinder-v2.securetheorem.com/_ah/upload/Aewsadw[...]/
Once a mapping file has been uploaded for a specific pre-prod app, all subsequent uploads will require a corresponding mapping file for scans to be completed. The mapping file requirement can be disabled by making a PATCH request with the requested setting as the body of the request to the Mobile Apps endpoint in the Results API v2 to disable it as follows:
Code Block curl --request PATCH https://api.securetheorem.com/apis/mobile_security/results/v2/mobile_apps/:mobile_app_id --data '{"scans_require_mapping_file": false}' -H "Authorization: APIKey ..."
If there are no issues with the validation of the uploaded build and mapping file, the de-obfuscated scan results will show up in the portal. If there are any issues with the de-obfuscation, please reach out to support@datatheorem.com.
...
...
Uploading a mapping file without a corresponding app build
In some cases such as releasing a prod app to Google Play, app scans are performed using the app build from Google Play. The implication is that the app is scanned without a mapping file and consequently the scans will not be de-obfuscated.
In order for prod apps to be de-obfuscated during scans, the corresponding mapping file for the prod app needs to be provided prior to the scan or release of the app into Google Play. The following steps can be performed to provide a mapping file without the corresponding build for both prod and pre-prod apps.
Step 1
Initialize the mapping file upload request using a POST request to the mapping file endpoint below.
Code Block |
---|
POST https://api.securetheorem.com/uploadapi/v1/upload_mapping_attachment_init |
This would require your team’s Upload API key from the Data Theorem portal and used as follows:
Request
Code Block |
---|
curl -X POST -H "Authorization: APIKey YOUR_API_KEY" --data "" https://api.securetheorem.com/uploadapi/v1/upload_mapping_attachment_init
|
Response
Code Block |
---|
{
"upload_url": "https://prod-dopinder-v2.securetheorem.com/api/v1/upload/sourcemap/2341c14f-c933-4a0b-v10b-bcfa1ad008d0"
} |
Step 2
The response contains an upload URL that’s valid for 10 minutes. The following fields have to be specified while uploading the mapping file for the prod app in Google Play in order to properly correlate it with the build that would be scanned from Google Play:
bundle_id - The bundle id for the app that the mapping file will be used for.
release_type - The release type for the app for which the mapping file relates to. The options are:
APP_STORE
PRE_PROD
version - The version of the app that’s in Google Play which will be scanned.
release_id (optional)
The release id of the app that makes it into Google Play. This field is optional as different teams may use it interchangeably with the version.
Using the upload_url from the response in Step 1, perform the following request to upload the mapping file:
Request
Code Block |
---|
curl -F file=@mapping.txt -F "bundle_id=com.yourcompany.TestApp" -F "version=2.5" -F "release_type=APP_STORE" https://prod-dopinder-v2.securetheorem.com/_ah/upload/sourcemap/2341c14f-c933-4a0b-v10b-bcfa1ad008d0 |
Please note that this will mark the app as requiring a mapping file for all subsequent scans to be completed. This option can be disabled in order for normal scans to proceed without requiring a mapping file.
Page Properties | ||
---|---|---|
| ||
|