Showing results for
🌐
Build Expo USA
buildexpousa.com › build expo usa
Build Expo USA - Build Business at Build Expo
November 12, 2025 - The Build Expo brand and conferences bring an opportunity to interact with all sorts of people and companies serving and working within construction and rehab. We use the show to network, collaborate, and work with prospective clients in a way that Zoom or chat can’t provide.
🌐
Cobb Travel & Tourism
travelcobb.org › home › events › atlanta build expo
Atlanta Build Expo - Cobb Travel & Tourism
July 24, 2025 - The Atlanta Build Expo is a construction tradeshow with various exhibitors and classes geared towards the construction industry. Featuring thousands of buyers from the industry's top companies including architects, contractors, designers, engineers, ...
🌐
New York Build 2026
newyorkbuildexpo.com
New York Build
New York Build is the largest construction & design show for the region. 1000s of attendees, exhibitors, speakers and more. Join the entire AEC industry!
🌐
Chicago Build 2025
chicagobuildexpo.com
Chicago Build Expo
Chicago Build 2026 features 30,000+ attendees, 400+ speakers across 13 tracks & AIA workshops, 350+ exhibitors, entertainment, networking parties and more!
Discussions

react native - Expo How to create a development build for android and how to create a .apk file? - Stack Overflow
Ive been reading the documentation and my build seems to succeed, however there is no apk file created. Im not fully sure if im running the right commands. my eas.json file looks like this: { &qu... More on stackoverflow.com
🌐 stackoverflow.com
Difference between Development client, Development build, Expo go
I'm confused with the terminology, could someone please clarify the below to me? What is the difference between Development build and Expo Go? Also what is development client? And how all above rel... More on github.com
🌐 github.com
3
23
If you are building a new app with Expo
Thank you for this. I've been hesitant to research this because of potential wasted time. The Reanimated shared elements isn't supported in Expo Go and I really want to implement it but have been pushing it off. More on reddit.com
🌐 r/reactnative
133
172
July 17, 2023
How can I build and distribute an Expo (React Native) app without using EAS Build, while still supporting CI/CD and OTA testing for QA? : reactnative
How can I build and distribute an Expo (React Native) app without using EAS Build, while still supporting CI/CD and OTA testing for QA? (self.reactnative) ... Post a comment! ... Use of this site constitutes acceptance of our User Agreement and Privacy Policy. © 2025 reddit inc. More on old.reddit.com
🌐 r/reactnative
🌐
City of Tampa
tampa.gov › calendar
Build Expo 2026 | City of Tampa
August 7, 2025 - This is a tradeshow for the construction industry. For event details please visit https://buildexpousa.com/tampa-build-expo/. Registration is required.
Find elsewhere
Top answer
1 of 2
7

I use EAS as well and i find it quite handy. Let me explain the profiles quickly.

All profiles can be found in eas.json

Development

This type is for developing, it makes it possible to see live reloads, live changes in the application when you change it. You can even pass env. variables if needed.

eas build --profile development --platform android

OR

To make a local build so the Expo Application Service is skipped

npx expo run:android

    "development": {
      "developmentClient": true,
      "distribution": "internal",
      "env": {
        "API_URL": "X",
      }

Preview

This creates a .apk file that you can install on your device or emulator. Note the the env. variable does not need to be the same as development

eas build --profile preview --platform android

    "preview": {
      "distribution": "internal",
      "env": {
        "API_URL": "Y",
      }
    },

Production

This creates a .aab file which you can upload on to Google Developer Console, if you want to set your app on the app store.

eas build --profile production --platform android

    "production": {
      "env": {
        "API_URL": "X",
      }
    },

If you do not need the env values, you can safely delete them.

After executing on of the commands in your terminal, a link should appear to expo.dev where you can download and install your development or preview .apk file

2 of 2
0

I use the EAS to create development builds and generate apk file. Reference my eas configuration to see the different profiles setup. At minimal, I have development, development-simulator and production build profiles defined.

{
  "cli": {
    "appVersionSource": "local"
  },
  "build": {
    "development": {
      "distribution": "internal",
      "channel": "uat",
      "developmentClient": true,
      "env": {
        "bundleIdentifier": "",
        "name": "",
        "APP_VARIANT": "development"
      },
      "autoIncrement": false,
      "android": {
        "buildType": "apk",
        "gradleCommand": ":app:assembleDebug"
      }
    },
    "development-simulator": {
      "extends": "development",
      "ios": {
        "simulator": true
      }
    },
    "production": {
      "channel": "production",
      "distribution": "store",
      "developmentClient": false,
      "autoIncrement": false,
      "env": {
        "bundleIdentifier": "",
        "name": ""
      },
      "ios": {
        "resourceClass": "m1-medium"
      }
    },
    "internal": {
      "extends": "production",
      "channel": "production",
      "distribution": "internal",
      "developmentClient": false,
      "autoIncrement": false,
      "env": {
        "bundleIdentifier": "",
        "name": ""
      }
    },
    "uat": {
      "extends": "production",
      "channel": "uat",
      "distribution": "internal",
      "developmentClient": false,
      "autoIncrement": false,
      "env": {
        "bundleIdentifier": "",
        "name": ""
      }
    }
  }
}

For example, to create a build for Android simulator, run

npm run build:android:dev

The build may take up to a few minutes to complete depending on the queue.

After the build is complete, you can download it on your iOS device by scanning the QR code from the device's camera from the Expo CLI. You can also find this QR code on the build page in the expo dashboard.

With the development build installed on your device or emulator/simulator, start the development server with npm run start. The app will run on your device and you can make changes in javascript and see the changes immediately.

A rebuild of the development client is only necessary if you add a library to your project that contains native code APIs, for example, expo-secure-store.

🌐
DBIA
dbia.org › home › 2025 design-build conference & expo
2025 Design-Build Conference & Expo - DBIA
1 week ago - The Design-Build Conference & Expo is the largest national gathering of the year for design-build.
🌐
Instagram
instagram.com › buildexpousa_
Build Expo USA (@buildexpousa_) • Instagram photos and videos
1,758 Followers, 25 Following, 977 Posts - Build Expo USA (@buildexpousa_) on Instagram: "America's Premier Regional Building & Construction Event"
🌐
Expo Documentation
docs.expo.dev › develop › development-builds › create-a-build
Create a development build on EAS - Expo Documentation
... When you create a new Expo ... app. A development build is essentially your own version of Expo Go where you are free to use any native libraries and change any native config....
🌐
Expo
expo.dev
Expo
From e-commerce, to social apps, people have made just about everything with Expo. Build your app and distribute it to Android, iOS, and the web from a single codebase with Build and Hosting.
🌐
Buildfw
buildfw.org
Build Fort Worth - Construction Expo
Build Fort Worth unites over 130 vendors and 800+ attendees to explore construction, contracting, and supplier diversity opportunities. Fort Worth is the 2nd fastest-growing city with development and construction opportunities. The Construction Expo and Breakout Sessions offer a prime opportunity to engage directly with representatives from companies and organizations you want to do business with...
🌐
Expo Documentation
docs.expo.dev › tutorial › create-your-first-app
Create your first app - Expo Documentation
We'll use create-expo-app to initialize a new Expo app. It is a command line tool to create a new React Native project. Run the following command in your terminal: ... This command will create a new project directory named StickerSmash, using ...
🌐
Los Angeles Convention Center
laconventioncenter.com › events › detail › build-expo-2025
Build Expo 2025 | Los Angeles Convention Center
South Hall G ♦ Meeting Rooms: 300 Series (South Building), 400 Series (Concourse Walkway) Parking Location · Please park in the South Hall Parking Garage. Maps View Parking Map View Venue Map · Related Links · Official Website ·
🌐
21buildingexpo
21buildingexpo.com › home
Home Builders Conference & Trade Show | 21st Century Building Expo :
July 29, 2025 - The 21st Century Building Expo is the premier home builders conference & trade show in the Carolinas. Attend November 12 & 13, 2024 at the Concord Convention Center.
🌐
Reddit
reddit.com › r/reactnative › if you are building a new app with expo
r/reactnative on Reddit: If you are building a new app with Expo
July 17, 2023 -

TLDR; Drop Expo Go, Creat full build with expo-dev-client

If you are building a new app with Expo, the first step after initial setup should be to to create a dev client build. You can search the EAS docs for how to do that but it is a single command. I see many posts stating “x isn’t working with Expo Go”. With the modern Expo / EAS cli you shouldn’t really even need Expo Go at all if you if you are doing anything more than prototyping. Use the EAS cli to create a full build of your application with expo-dev-client which gives you all of the benefits of Expo Go (hot reload) with no downsides (package constraints etc…) for a “pro tip” use the —local option to build the application locally without needing to wait for the expo servers.

🌐
X
x.com › NewYorkBuild
New York Build Expo (@NewYorkBuild) / X
February 17, 2015 - New York Build Expo · @NewYorkBuild · New York Build Expo | Javits Center, March 12-13, 2025 · Commercial & IndustrialNew York, USAlinktr.ee/newyorkbuild · Joined February 2015 · 1,916 Following · 2,490 Followers · @NewYorkBuild hasn’t ...