Support Ukraine đŸ‡ș🇩 Help Provide Humanitarian Aid to Ukraine.
For Developers

Load test builds in expo

1 min read
CloudAnswers photo
CloudAnswers
Share
TODO

Have expo project, want public testing URL

The expo has restricted loading of apps from the public for ios, but here's a workaround that we use to let users test our apps when we do rapid-prototyping...

  1. create a GitHub action to build the expo app with a unique app name for each PR, so you don't accidentally do anything to your production app and so comments are stamped to specific feature branches
  2. run npx expo publish --non-interactive
  3. look for the output URL which looks like this:
    image: /uploads/ 📝 Manifest: https://exp.host/@***/***-pr-40/index.exp?sdkVersion=40.0.0 Learn more: https://expo.fyi/manifest-url
  4. Copy that URL into a QR code generator like this one:
    http://goqr.me/#t=url
    Or use a CLI script to do it at the end of the build process:
    https://www.npmjs.com/package/qrcode
    And then email it to the users that you want to test!
  5. Scan the code on your iPhone!

CloudAnswers photo
CloudAnswers
Share

About CloudAnswers

Salesforce apps, powerful components, custom development, and consulting. Our experienced team helps you to create and modify workflow processes in salesforce.

Related Articles

For Developers

Tips for Becoming a Salesforce Developer

Interested in becoming a Salesforce developer? In this blog post Jagmohan has put together his favorite tips and resources to get started in the world of Salesforce development.

April 4, 2024

6 Min Read

For Developers

Designing User Security and Visibility in Salesforce

Trust and security are at the top of Salesforce's priority list. The platform has everything you need if you're looking to construct a robust user security paradigm. However, this security approach has flaws that an attacker can exploit to gain access to your data. The Salesforce Architect has the duty to ensure that these features are set up correctly.

March 16, 2022

7 Min Read

For Developers

Batch Apex Error Event - CloudAnswers Hackathon

A hackathon is an event usually put together by a tech organization. The event brings programmers together over a specific period to collaborate on a project.

June 28, 2021

5 Min Read