Questions tagged [expo-build]
22 questions
6
votes
1 answer
Expo build EAS - local - SDK location not found
When I used the new build tool from expo called EAS to build my react native application locally:
eas build --platform android --local
I got an error:
SDK location not found. Define location with an ANDROID_SDK_ROOT
All the answers I've found are…

jave.web
- 13,880
- 12
- 91
- 125
5
votes
1 answer
How to get the .dSYM file from expo EAS build?
I have successfully built an app using Expo EAS build and now I want to retrieve the .dSYM file generated.
Anyone know if it's possible? I couldn't find anything related to that in the Expo AES build docs.

Bruno Saito
- 53
- 3
4
votes
2 answers
Expo eas: Android build fails if I run a prebuild before
I use Expo 46.
I would like to change some config in my AndroidManifest so I run an npx expo prebuild that generates an android folder without error.
But then my eas build is not working anymore (it is if I don't run prebuild).
I get this…

Simon
- 6,025
- 7
- 46
- 98
3
votes
0 answers
Execution failed for task ':app:mergeReleaseResources' (When running eas build -p android --profile production)
I'm getting the following error when building the react-native apk app for android via expo build command for production.
Below is the package.json, eas.json and error
package.json ((https://i.stack.imgur.com/3pgm5.png)
eas.json…

Tushal Joggesser
- 41
- 2
3
votes
0 answers
Expo react native iOS build failure at noop-file.swift
I'm building expo react native app for iOS using expo-cli and while running fastlane there is an error with file noop-file.swift with logs like this:
(ios/Pods/Target Support Files/Pods-6moto/ExpoModulesProvider.swift:9:12)
7 |
8 | import…

Krzysztof Karasiński
- 31
- 6
2
votes
0 answers
Difference in bundleID btw npx expo run:ios and development build + npx expo start --dev-client?
I'm developing an iOS app and implementing a RevenueCat integration. To simplify, RevenueCat relies on the bundleID of the app to connect to Apple to fetch the right subscriptions created on the account.
I originally had one version of my app using…

Allen Y
- 341
- 1
- 11
2
votes
0 answers
Can't build with expo eas build - Error: Gradle build failed with unknown error. See logs for the "Run gradlew" phase for more information
Help needed, I'm trying to build my expo app with eas build -p android, it is showing the below "
[stderr] FAILURE: Build failed with an exception.
[stderr] * Where:
[stderr] Settings file '/home/expo/workingdir/build/android/settings.gradle'…

Obyno Pac
- 103
- 2
- 13
1
vote
0 answers
React-native apk crashing on physical device after build using "eas build -p android --profile preview"
I have an react-native project managed by expo.
The project runs smoothly on expo go but after building it by following the current eas build procedure the app crashes on physical device.
To build the apk the eas global cli npm package was installed…

Kawshik Biswas
- 11
- 1
1
vote
2 answers
Expo: eas build blockedPermissions does not work
I'm trying to remove a permission that I don't need that is blocking my submission to the App Store: REQUEST_INSTALL_PACKAGES
I use Expo 46 and I put
"android": {
"blockedPermissions": ["android.permission.REQUEST_INSTALL_PACKAGES"],
in my…

Simon
- 6,025
- 7
- 46
- 98
0
votes
0 answers
Application crashes when clicked despite being installed on simulators
I've set up with Expo for iOS and Android, and even though there are no error logs appearing, when I try to install and test the app on the Android emulator or iOS simulator, the application is closing automatically. Please help?
**
app.json**
{
…
0
votes
1 answer
Expo development build: No bundle url present
I have an expo-managed app with native packages that runs fine on my simulator with npx expo run:ios. I can also run it on my physical device with npx expo run:ios --device
However, when I try to use eas build --profile development --platform ios,…

Nathan Tew
- 432
- 1
- 5
- 21
0
votes
0 answers
Execution failed for task ':app:mergeReleaseResources' (When running eas build -p android)
ERROR ON EXPO BUILD:
[stderr]
Execution failed for task ':app:mergeReleaseResources'.
[stderr]
> Multiple task action failures occurred:
[stderr]
> A failure occurred while executing…
0
votes
1 answer
Expo build properties error - couldn't find DSO to loaad
I need to set the minSdkVersion of my expo app (with custom dev client) to 24. So, I added the "expo-build-properties" plugin with the minSdkVersion to my app.json file as mentioned here:
{
"expo": {
...
"plugins": [
...
[
…

AkbarB
- 460
- 7
- 24
0
votes
1 answer
Why does my Expo-built React Native app crash after splash screen with no error messages?
After building the react native expo app on expo dev, I installed it, on opening the app, it crashed after loading the splash screen.
I am not getting anything errors from the console or popup errors.
this is my package.json ...
{
"name":…

Miracle Obafemi
- 1
- 1
0
votes
0 answers
Is `npx expo install` only recommended for Expo Go or is it needed for custom dev clients as well?
Is it recommended to use npx expo install [package] when installing third-party packages with custom Expo dev clients? I know it's recommended when using Expo Go, but the docs here don't really explicitly say whether or not it should be used for…

Trevor
- 263
- 2
- 11