Creating build of my project but Failed

Getting error -
690 actionable tasks: 690 executed
Error: Process exited with non-zero code: 1
at ChildProcess.child.on (/app/node_modules/xdl/node_modules/@expo/spawn-async/build/spawnAsync.js:39:21)
at emitTwo (events.js:126:13)
at ChildProcess.emit (events.js:214:7)
at maybeClose (internal/child_process.js:915:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)

https://expo.io/builds/ae0ef885-bd2c-4df8-8b40-58f1d7544b8b

app.json -
{
“expo”: {
“name”: “YYY”,
“slug”: “YYY”,
“scheme”: “yyy”,
“sdkVersion”: “31.0.0”,
“icon”: “./assets/icon.png”,
“version”: “1.0.0”,
“platforms”: [
“ios”,
“android”
],
“orientation”: “portrait”,
“primaryColor”: “#cccccc”,
“packagerOpts”: {
“assetExts”: [
“ttf”
]
},
“android”: {
“package”: “com.xxyy.xxyy”,
“splash”: {
“backgroundColor”: “#ffffff”,
“ldpi”: “./assets/splash.png”,
“mdpi”: “./assets/mdpi/splash.png”,
“hdpi”: “./assets/hdpi/splash.png”,
“xhdpi”: “./assets/xhdpi/splash.png”,
“xxhdpi”: “./assets/xxhdpi/splash.png”,
“xxxhdpi”: “./assets/xxxhdpi/splash.png”,
“resizeMode”: “cover”
}
},
“ios”: {
“bundleIdentifier”: “com.xxy.yyz”,
“splash”: {
“backgroundColor”: “#ffffff”,
“resizeMode”: “cover”,
“image”: “./assets/ios/splash@2x.png”,
“tabletImage”: “./assets/ios/splash.png”
}
},
“androidStatusBarColor”: “#334393”,
“androidStatusBar”: {
“barStyle”: “light-content”,
“backgroundColor”: “#334393
},
“description”: “”
}
}

Its, urgent. Please help me!

Your app.json is missing the assetBundlePatterns key in expo object, add that in and run build again

    "assetBundlePatterns": [
      "**/*"
    ]

Thanks @dsokal

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.