https://github.com/mobile-dev-inc/step-upload
https://github.com/mobile-dev-inc/step-upload
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mobile-dev-inc/step-upload
- Owner: mobile-dev-inc
- License: mit
- Created: 2022-06-20T22:23:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-12T22:43:03.000Z (almost 4 years ago)
- Last Synced: 2025-02-15T14:32:25.352Z (over 1 year ago)
- Language: TypeScript
- Size: 438 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mobile.dev Bitrise Step
Upload your app to mobile.dev for analysis.
# Android
```yaml
- git::https://github.com/mobile-dev-inc/step-upload.git@1.0.1:
inputs:
- api_key: "$MOBILE_DEV_API_KEY"
- app_file: "$BITRISE_APK_PATH"
```
`app-file` should point to an x86 compatible APK file
### Proguard Deobfuscation
Include the Proguard mapping file to deobfuscate Android performance traces:
```yaml
- git::https://github.com/mobile-dev-inc/step-upload.git@1.0.1:
inputs:
- api_key: "$MOBILE_DEV_API_KEY"
- app_file: "$BITRISE_APK_PATH"
- mapping_file: "$BITRISE_MAPPING_PATH"
```
# iOS
```yaml
- git::https://github.com/mobile-dev-inc/step-upload.git@1.0.1:
inputs:
- api_key: "$MOBILE_DEV_API_KEY"
- app_file: "$BITRISE_APP_DIR_PATH"
```
`app-file` should point to an x86 compatible Simulator .app directory.