You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# remove old ipa and apk app's
rm lunchpool_mobile_onboarding-*&&# generate new ipa and apk app's via bash script
expo build: ios &&
expo build: android &&
apkUrl=$(expo build:status | grep APK | cut -c 17- | head -1)&&
ipaUrl=$(expo build:status | grep IPA | cut -c 17- | head -1)&&
curl -O $apkUrl;curl -O $ipaUrl;# If your phone is connected to the computer and emulator has been installed,# make sure your phone is in usb-debug mode... google for your phone if unsure.
brew install abd
adb -s <device name> install <apk signiture># example: adb -s 89NX0C6YN install lunchpool_mobile_onboarding-7988607a3ef444e6b9487bc371aff7b1-signed.apk
(Not required, getting android emulator setup on mac computer):