local environment cause expo build crash on Testflight - react-native

My code runs well on ios simulators and but it crashes on Testflight. When my friend clones the code and their code runs great with Testflight. It must be my environment settings then. Here is what I think might cause the issue:
1.when I do expo run: ios --configuration Release, Error: cannot find ‘ExpoModule’ in scope
2.“expo”: “^44.0.0”,
“expo-constants”: “~13.0.1”,
“react”: “17.0.1”,
“react-dom”: “17.0.1”,
“react-native”: “0.64.3”,
“yarn”: “1.22.17”,
“npm”: “6.14.14”,
"node":"12.17.5",
“expo-CLI”: " 5.0.3",
3.expo run:ios --configuration Release. generate tar file, and it crashes on the simulator as well, the crash code said
Feb 3 00:04:19 Xs-iMac OrgCorescore[69361]: assertion failed: 20C69 18E182: libxpc.dylib + 50305 [454053CA-B690-3B99-BE31-2369B04EA493]: 0x7d
com.apple.CoreSimulator.SimDevice.DACCEDA2-9E0B-4CA7-AF56-C134FBF4F4C9[49383] (UIKitApplication:org.core[0d61][rb-legacy][69361]): Service exited due to SIGABRT
Feb 3 00:04:19 XIs-iMac OrgCorescore[69362]: assertion failed: 20C69 18E182: libxpc.dylib + 50305 [454053CA-B690-3B99-BE31-2369B04EA493]: 0x7d
Thank you so much.

Related

Azure devops react native ios build fails with generic error 65

My react native build is failing on iOS xcode build for mac...
Error on the pipeline:
▸ Check Dependencies
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
##[error]Error: /usr/bin/xcodebuild failed with return code: 65
How to know what dependencies are affected?
not on verbose, or system log I can see more info
Generally, error 65 can indicate problems with the signing process. In some cases, this can be solved using the manual signing option. Provisioning profile id is required for manual signing.
signingOption: 'manual'
provisioningProfileUuid: ***
https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/build/xcode?view=azure-devops

Appcelerator Doesnt Accept Developer Certificate

Appcelerator made me crazy!!!
I'm trying to compile / test / build etc. but I stuck with the error below. First I thought it happened because I updated to El Capitan and gives these errors only for iOS builds.
Later,
I realized It happens when I try to build for Android on Windows.
Please help me guys,
I have done lots of things but I couldn't get solved this!
Logging out doesn't solved anything. Certificates also changed nothing. (On OS X)
Is it related with my account type on appcelerator platform or anything otherwise that I couldn't understand...
[ERROR] : Developer Certificate Invalid. Please logout using `appc logout -D` and then re-login again.
2015-12-03T18:42:18.785Z | TRACE | titanium exited with exit code 100
2015-12-03T18:42:18.786Z | ERROR | Error: ti run exited with error code 100
at ChildProcess.<anonymous> (C:\Users\Mustafa\.appcelerator\install\5.1.0\package\node_modules\appc-cli-titanium\plugins\run.js:92:66)
at ChildProcess.emit (events.js:110:17)
at Process.ChildProcess._handle.onexit (child_process.js:1074:12)
2015-12-03T18:42:18.787Z | TRACE | Sending exit signal to titanium process: 3372
[ERROR] Application Installer abnormal process termination. Process exit value was 1
In my case this error was caused by non-english character used in my surname. I'd suggest you login to Appcelerator's dashboard and verify your account's details (first name, last name).

Build Failed - validate build/release

Just a few days ago I could both run (in the simulator and on my iphone device) and package my iOS app for the iOS iTunes Store. But now I cannot get past this error during package:
[ERROR] : ** BUILD FAILED **
[ERROR] : The following build commands failed:
[ERROR] : Validate build/Release-iphoneos/Trivia\ Rain.app
[ERROR] : (1 failure)
TRACE | titanium exited with exit code 1
ERROR | Error: ti run exited with error code 1
at ChildProcess.<anonymous> (/Users/natej/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/plugins/run.js:84:66)
at ChildProcess.emit (events.js:117:20)
at Process.ChildProcess._handle.onexit (child_process.js:810:12)
Since a few days ago when the package worked perfectly, I have changed nothing related to my keychains, keystore, profiles, certificates, etc. I have made a few code changes, but after my changes, the app compiled fine, runs in simulator, and deploys/runs on my iphone 6 device. I have double checked that my certs and distribution profiles are all valid, and nothing has changed from a few days ago.
I have cleaned my project, restarted Appcelerator Studio, restarted my mac. Still I cannot get past this error.
Any ideas?
I came back 4 days later after having these problems, having changed nothing (no code, no settings, no Appcelerator updates)...and it simply worked this time.
In summary, Appcelerator is buggy. :-|

Build Failed Error in Titanium iOS project

I am using Titanium 3.1.3 GA version.
While include mobile app tracking module in project, getting "Build Failed" Error message.
Tried with new project also getting the same error.
[ERROR] : ** BUILD FAILED **
[ERROR] : The following build commands failed:
[ERROR] : Ld build/Debug-iphonesimulator/MoibleAppTrackingSample.app/MoibleAppTrackingSample normal i386
[ERROR] : (1 failure)
Please let me know about the issue and how could i fix this.
i386 means you were running on IOS, if yes then please paste the whole log here, so that we can figure it out actually. Because there may be many issue like sdk problem and all. i386 architecture is used for simulators.
Go in finder where this project is and then click BUILD/iphone/ then click on Xcode project. And from there try to build.
Are there any more details about in the log?
What module did you use? did you download it from the MarketPlace?
Try doing a Clean Project and try again.

Version mismatch in xcactivitylog after upgrading to XCode 4.2

I upgraded to XCode 4.2 and am getting the warning below while running command line builds
2011-10-22 20:16:39.327 xcodebuild[71845:1903] [MT] IDELogStore: Failed to open Build log store: Error Domain=IDEFoundationErrorDomain Code=1 "deserialization of log failed because of a version number mismatch" UserInfo=0x4011105e0
The build continues to succeed.
Also, there's no such warning while running from XCode.
How do I fix it?
I had this problem too and was able to resolve it by cleaning my project, removing ~/Library/Developer/Xcode/DerivedData/MYAPP and then rebuilding.