Skip to content

Instantly share code, notes, and snippets.

@flexbox
Created July 2, 2018 13:54
Show Gist options
  • Save flexbox/0a10b5052d51a20d1d1cb52e67830ae6 to your computer and use it in GitHub Desktop.
Save flexbox/0a10b5052d51a20d1d1cb52e67830ae6 to your computer and use it in GitHub Desktop.
React Native with expo SDK release script for android
#!/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