Questions tagged [eas]

For questions about the Expo EAS build system

370 questions
0
votes
1 answer

Duplicated builds from the initial PR being opened with custom label to trigger GithubAction

When I push changes to my GitHub PR, which has GitHubActions set to trigger EAS builds, sometimes I see duplicated builds with the development-internal profile. I can see it's the same commit hash: We are on: Managed Workflow eas-cli version:…
Phil Lucks
  • 2,704
  • 6
  • 31
  • 57
0
votes
1 answer

eas ios build fails with error you must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE)

I'm trying to build my react-native expo (46) app with an eas build and get this error: ld: '/Users/expo/Library/Developer/Xcode/DerivedData/.../FBAEMKit.framework/FBAEMKit' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode…
Simon
  • 6,025
  • 7
  • 46
  • 98
0
votes
1 answer

Expo secrets, unable to access in prod

The expo documentation is either confusing or wrong. In my app.config.js i have: export default { expo: { ... extra: { API_URI: process.env.API_URI, API_KEY: process.env.API_KEY, }, ... In consts.js : import Constants from…
0
votes
1 answer

APK app build with react-native expo and build with expo stuck on splash screen

I have just finished my first android app using react-native v0.69.6, I have used eas to generate an APK file, which is stuck on the splash screen. I have also created a new bar-bones project and build an APK file but the same issue.
0
votes
0 answers

expo-sqlite working in Expo Go but not in .apk build

I am using expo-sqlite in my Expo App like this in App.js import * as SQLite from "expo-sqlite"; const db = SQLite.openDatabase("tasks.db"); export default function App() { useEffect(() => { db.transaction((txt) => { txt.executeSql( …
MichaelB
  • 1
  • 3
0
votes
0 answers

how to build apk with aes?

I was using expo build:android -t apk to get an apk file an try the application. It was automatically available in expo. Now I try to do the same with eas but it is not working. I tried : yarn eas build -p android -t apk yarn eas build -p android…
Jim
  • 669
  • 4
  • 10
  • 24
0
votes
0 answers

Expo - Eas build crashing

This eas build really makes me not use Expo and React native anymore... I've tried Flutter for building apk before, and process is more clear than this, if I have some issues with my build then why not showing it during build process? anyway, I'm…
0
votes
0 answers

Can the development build installed on my phone be used and debugged through the Internet like Expo Go App does?

Currently I am working on a map app that tracks users position and generate their walking route. I wish I can go outdoor and test if the app can tracks the users' position in time. Currently I have set up a EAS build and now I can connect my…
Stephen.W
  • 1,649
  • 13
  • 14
0
votes
0 answers

I want to build app-bundle using eas build, but expo is throwing error while running gradlew

it's showing error as: [stderr] FAILURE: Build completed with 2 failures. [stderr] 1: [stderr] Task failed with an exception. [stderr] ----------- [stderr] * Where: [stderr] Build file…
0
votes
1 answer

Build using expo eas and got gitCommitMessage error

When I start build using eas android app-bundle I'm receiving this message: Compressing project files and uploading to EAS Build. Learn more ValidationError: "gitCommitMessage" is not allowed to be empty eas.json { "build": { …
user20274965
0
votes
0 answers

After buying Expo application services, will expo team create build and publish it to app store for us?

Since I am facing a lot of issues with expo eas build, I am planning to buy the production expo application services plan. But just before that I am unable to understand how will it help. Will the expo team take my project and create build for it?
Dreamer
  • 112
  • 1
  • 14
0
votes
0 answers

Component library dependency issues when built with EAS: "AIRMap was not found in the UIManager" & "Tried to register two views with the same name"

I have a shared component library for our company with things like Icons, Maps, and inputs. When I develop locally, all is fine. When I bundle via Expo & EAS, the app crashes immediately. I am in a managed Expo workflow. I see errors…
Phil Lucks
  • 2,704
  • 6
  • 31
  • 57
0
votes
2 answers

EAS ignoring local versionCode in build

I recently updated our Expo project from sdk 44 to 46. During that process, I switched from Expo build:android to eas build -p android. Everything is running as expected, except the version code is not compiled into the aab/apk files correctly, so I…
sphrases
  • 31
  • 6
0
votes
1 answer

Eas Build (Expo) task app:CreateReleaseExpoConfig is missing module jsonfile/utils. How would I resolve it?

I'm trying to migrate to using eas-build from expo build. I created a simple eas.json and I'm stuck on fixing this (hopefully) last error. I didn't have a .env file before moving to eas-build so I'm quite sure that's not the issue. package.json…
Khaleel
  • 1
  • 1
0
votes
2 answers

react-native-dotenv doesn't work with EAS builds

We used dotenv lib with classic builds and it worked fine providing a possibility to manage different environments. But it stopped working when we moved to EAS builds. What are possible solutions?
Aliaksei
  • 1,094
  • 11
  • 20