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
# Generate a signing key per https://facebook.github.io/react-native/docs/signed-apk-android#docsNav# Use `111111` as your key and store passwords
keytool -genkeypair -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
mv my-release-key.keystore android/app/
# Build the APK
npm run bs:android
Run tests
# Run unit & integration tests
npm test# Run E2E tests locally
npm run test:e2e
# Setup for uploading to cloud servicesexport APP_PATH=$(pwd)/android/app/build/outputs/apk/release/app-release.apk
export APP_EXTENSION=apk
# Sauce Labs free trial per https://signup.saucelabs.com/signup/trialexport SAUCE_USERNAME=
export SAUCE_ACCESS_KEY=
# After you're signed up and logged in, you'll need to go to https://app.testobject.com to try real devicesexport TESTOBJECT_ACCESS_KEY=
# BrowserStack free trial per https://www.browserstack.com/users/sign_upexport BROWSERSTACK_USERNAME=
export BROWSERSTACK_ACCESS_KEY=
# Upload and run tests on Sauce Labs (emulated)
npm run upload:e2e:sauce
npm run test:e2e:sauce
# Upload and run tests on Sauce Labs (real devices)
npm run upload:e2e:testobject
npm run test:e2e:testobject
# Run it on BrowserStack
npm run upload:e2e:browserstack
npm run test:e2e:browserstack