Created
July 2, 2018 13:54
-
-
Save flexbox/0a10b5052d51a20d1d1cb52e67830ae6 to your computer and use it in GitHub Desktop.
React Native with expo SDK release script for android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo '' | |
echo '================' | |
echo 'Dependency check ' | |
echo '================' | |
echo '' | |
yarn | |
echo '' | |
exp build:android | |
echo '' | |
echo '==============================' | |
echo 'Download android-signed.apk 🤖' | |
echo '==============================' | |
echo '' | |
echo 'Give me the standalone app link' | |
read APP_LINK | |
APP_IPA=$(curl $APP_LINK -o android-signed.apk) | |
echo $APP_IPA | |
open . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment