My build was rejected by the app store, who said it crashed on launch. The app runs fine through expo, so I tried a simulator build but it fails with this output:
Checking if there is a build in progress...
Publishing to channel 'default'...
Warning: This project contains unoptimized assets. Please run `expo optimize` in your project directory.
Building iOS bundle
Building Android bundle
Analyzing assets
Uploading assets
No assets to upload, skipped.
Processing asset bundle patterns:
- /Users/TuzMacbookPro2017/Development/QMG-local/APPS/ELECTRO/**/*
Cannot read property 'forEach' of undefined
TypeError: Cannot read property 'forEach' of undefined
at _configureExpForAssets (/#expo/xdl#55.0.13/src/Project.js:1037:26)
I have no clue what this means, can anyone help? The actual ios build succeeds.
Related
I’ve been trying to deploy my svelte-kit project to aws amplify but whenever I do, despite the build and deploy stages being successful, the page returns a 404 error. I’ve changed the build settings to '/build' which is the output directory I've specified, and I'm using svelte-js/adapter-node but have tried a few other adapters. When I download the build artifacts from aws the build is the exact same as what is produced locally (by npm run build).
Build Log Image
Amplify Domain returns: "No web page was found for the web address:"
I've attatched an image of the end of the amplify build, which includes the warning 'no index.html found' as svelte-kit doesn't seem to produce an index.html. Does anyone know how to fix this issue? Anyway to deploy a dynamic svelte project to amplify is what I'm looking for.
I flipped over to using adapter-static (and svelte kit) and it seems to work for me.
We built our app using Expo.
We published it successfully to Google Play
We got error when submitting our app to App Store. The steps that I did to submit our app:
expo build:ios
Wait for Expo to build our app
Download .ipa file on a MacBook (a very old one without XCode)
Submit .ipa using Transporter
I got ERROR ITMS-90596: "Invalid Bundle. The asset catalog at 'Payload/ExpoKitApp.app/GoogleMaps.bundle/GMSCoreResources.bundle/Assets.car' can't be processed. Rebuild your app, and all included extensions and frameworks, with the latest GM version of Xcode and resubmit." as below. (Note: image is copied from https://github.com/expo/expo-cli/issues/195)
I think the app is build by Expo server. And it should include all required code to submit to App Stores.
What's wrong with steps above? How can we solve this?
I had a similar issue (built app on windows, built IPA in cloud by Expo, failed to submit IPA on a Mac through Transporter with ITMS error code)
In this case, I submitted the IPA with Application Loader from XCode 10.1 and it worked. I downloaded an old version here: https://developer.apple.com/download/more/. I also needed to download the command line tools.
Related question: ERROR ITMS-90596: "Invalid Bundle. The asset catalog at 'Payload/ExpoKitApp.app/.bundle/Assets.car' can't be processed."
I am having issue deploying a react project to heroku, I checked my heroku logs and i see that heroku is having problem running npm build.
After googling around i found out that i need to degrade my react-scripts from 3.1.2 to 3.0.1 and heroku build it successfully.
But Heroku is still displaying
Application error
so I had to run build myself locally, I am getting a blank page and I see on my chrome console this error:
TypeError: t.map is not a function - react-dom.production.min.js:4483
Note: yarn start is running the application locally without any error.
My .Net Core 2.1 app builds successfully on my local machine, however on my Azure DevOPS pipeline, it fails in the build stage with the following error:
##[error]Error: C:\hostedtoolcache\windows\dncs\2.1.500\x64\dotnet.exe failed with return code: 1
##[error]Dotnet command failed with non-zero exit code on the following projects : D:\a\1\s\API\API.csproj,D:\a\1\s\AuthCore\AuthCore.csproj,D:\a\1\s\DomainModel\DomainModel.csproj,D:\a\1\s\Repo\Repo.csproj
I have added the .Net Core SDK installer before the restore step in the pipeline (and tried various versions) but it fails the same way every time.
The full log file of the build stage is available here: LINK
.Net Core solutions build locally, but fails build on Azure DevOPS pipeline
According to the error messages in your link, like following:
The type or namespace name 'DataAnnotations' does not exist in the
namespace 'System.ComponentModel'
It seems you are missing the references when you build the project/solution. So, if you add those references with nuget, you may need also add a nuget restore task to restore those nuget packages.
Check the details info from .NET Core task
Hope this helps.
I am building my ember app in production environment and deploying it on my local wamp server(apache server). But when I copy the file and open the app using url, the handlebar template application.hbs or index.hbs is not rendered.
I am building my project using
ember build --environment production --output-path dist/
But when I open the path 127.0.0.1/path-to-my-project
I get following error in console.
Uncaught Error: Could not find module `ember-data/-private\system\references\record` imported from `ember-data/-private/system/references`
vendor-192d3eef66f0205b64b4acf903f80f63.js:1
I am getting this error when building in production environment,building in development environment is working fine
I checked the documentation and sources available online, but couldn't find the cause for this error.
Please Help...
On Windows, it's mixing / and \s. See:
https://github.com/emberjs/data/pull/4205
If you're using the latest Ember, the solution is to upgrade to Ember-Cli 2.4.2 and use Ember Data 2.4.0.