https://github.com/chancehudson/pthrow
CLI to build apk and ipa and post in a github comment on relevant pr
https://github.com/chancehudson/pthrow
Last synced: over 1 year ago
JSON representation
CLI to build apk and ipa and post in a github comment on relevant pr
- Host: GitHub
- URL: https://github.com/chancehudson/pthrow
- Owner: chancehudson
- Created: 2019-06-09T04:03:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-09T10:47:12.000Z (about 7 years ago)
- Last Synced: 2024-07-21T00:41:17.379Z (about 2 years ago)
- Language: JavaScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automated APK distribution
A cli command to build the apk file run in the root of a react-native project.
This can be used to generate and distribute test links in pull request comments, discord, slack, text, wherever
## Usage
### CI
Ideally there's a script to build, locate and upload the apk
`npx apkdist .`
Which would do something along the lines of
```
#!/bin/sh
# Build the apk
cd android && ./gradlew assembleRelease
# Then locate it locally
```
in the ci for a react native project