iOS Question Build failure

MList

Member
Licensed User
Hi, please help ! Today i have got this build error, don't know what i did wrong. Just made some changes in designer script...
I am using hosted builder.


B4i Version: 6.80
Parse den Code. (0.09s)
Building folders structure. (0.03s)
Kompiliere den Code. (0.22s)
Kompiliere Layoutcode. (0.01s)
Kompiliere Debugger-Code (0.01s)
Erstelle Xcode-Projekt (0.15s)
Sende Daten an entfernten Compiler. Error
Out: Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Release PRODUCT_NAME=TC-Transfer CONFIGURATION_BUILD_DIR=/Users/erel/Documents/UploadedProjects/<user id>/Payload "CODE_SIGN_IDENTITY=iPhone Distribution: List-Magnetik Dipl. Ing. Heinrich List GmbH (Z37L8363UU)" "OTHER_CODE_SIGN_FLAGS=--keychain <user id>" PROVISIONING_PROFILE=fee34218-5c88-464a-a625-bb0d601470c6 -arch arm64

Build settings from command line:
ARCHS = arm64
CODE_SIGN_IDENTITY = iPhone Distribution: List-Magnetik Dipl. Ing. Heinrich List GmbH (Z37L8363UU)
CONFIGURATION_BUILD_DIR = /Users/erel/Documents/UploadedProjects/<user id>/Payload
OTHER_CODE_SIGN_FLAGS = --keychain <user id>
PRODUCT_NAME = TC-Transfer
PROVISIONING_PROFILE = fee34218-5c88-464a-a625-bb0d601470c6

note: Using new build system
note: Using codesigning identity override: iPhone Distribution: List-Magnetik Dipl. Ing. Heinrich List GmbH (Z37L8363UU)
note: Planning build
note: Constructing build description
CreateBuildDirectory /Users/erel/Documents/UploadedProjects/<user id>/build (in target 'B4iProject' from project 'B4iProject')
cd /Users/erel/Documents/UploadedProjects/<user id>
builtin-create-build-directory /Users/erel/Documents/UploadedProjects/<user id>/build

MkDir /Users/erel/Documents/UploadedProjects/<user id>/Payload/TC-Transfer.app (in target 'B4iProject' from project 'B4iProject')
cd /Users/erel/Documents/UploadedProjects/<user id>
/bin/mkdir -p /Users/erel/Documents/UploadedProjects/<user id>/Payload/TC-Transfer.app

ProcessProductPackaging /Users/erel/Library/MobileDevice/Provisioning\ Profiles/fee34218-5c88-464a-a625-bb0d601470c6.mobileprovision /Users/erel/Documents/UploadedProjects/<user id>/Payload/TC-Transfer.app/embedded.mobileprovision (in target 'B4iProject' from project 'B4iProject')
cd /Users/erel/Documents/UploadedProjects/<user id>
builtin-productPackagingUtility /Users/erel/Library/MobileDevice/Provisioning\ Profiles/fee34218-5c88-464a-a625-bb0d601470c6.mobileprovision -o /Users/erel/Documents/UploadedProjects/<user id>/Payload/TC-Transfer.app/embedded.mobileprovision

WriteAuxiliaryFile /Users/erel/Documents/UploadedProjects/<user id>/build/B4iProject.build/Release-iphoneos/B4iProject.build/DerivedSources/Entitlements.plist (in target 'B4iProject' from project 'B4iProject')
cd /Users/erel/Documents/UploadedProjects/<user id>
write-file /Users/erel/Documents/UploadedProjects/<user id>/build/B4iProject.build/Release-iphoneos/B4iProject.build/DerivedSources/Entitlements.plist

ProcessProductPackaging "" /Users/erel/Documents/UploadedProjects/<user id>/build/B4iProject.build/Release-iphoneos/B4iProject.build/TC-Transfer.app.xcent (in target 'B4iProject' from project 'B4iProject')
cd /Users/erel/Documents/UploadedProjects/<user id>

............ more and more code.....
 

omarruben

Active Member
Licensed User
Longtime User
yes, just take a break... coffee... and try later.. some times the hosted service has some problems (last time i got about 24 hours break and then it worked without any change)
 
Upvote 0

MList

Member
Licensed User
That's the fullt text. I waited 24 hours... no difference.
I have got a copy from my project from about 3 weeks ago, and it works fine... the same project, same provisioning and keys, same server....
So it must have something to do with the changes i recently made....
Thanks for help ..
 

Attachments

  • BuildError.jpg
    BuildError.jpg
    59.9 KB · Views: 140
  • BuildError.txt
    66.2 KB · Views: 161
Upvote 0

MList

Member
Licensed User
'All variants script
AutoScaleAll

'Variant specific script: 320x480,scale=1
AutoScaleAll
SelectText.Top = 10%y
SelectLog.bottom = SelectClose.Top - 1%y
clvSelect.Top = SelectText.bottom
If SelectInput.Visible = false Then
clvSelect.SetTopAndBottom (SelectText.Bottom + 5dip ,SelectLog.Top - 5dip)
Else
SelectInput.right = clvSelect.right
SelectInput.bottom = SelectLog.Top - 1%y
SelectInputLabel.bottom = SelectLog.Top - 1%y
clvSelect.SetTopAndBottom (SelectText.Bottom + 5dip ,SelectInput.Top - 5dip)
End If
'Variant specific script: 480x320,scale=1
AutoScaleAll
SelectText.Top = 1%y
'SelectLog.bottom = SelectClose.Top - 1%y
If SelectInput.Visible = false Then
clvSelect.width = 70%x
clvSelect.SetTopAndBottom(SelectText.bottom + 1%y,SelectClose.Top - 1%y)
clvSelect.SetLeftAndRight (SelectText.Left,SelectText.right)

Else
clvSelect.Width = 50%x
clvSelect.SetTopAndBottom(SelectText.bottom + 1%y,SelectClose.Top - 1%y)
SelectInputLabel.Left = clvSelect.Right + 2%x
SelectInput.Left = clvSelect.Right + 2%x
SelectInputLabel.top = clvSelect.top + 15%y
SelectInput.Top = SelectInputLabel.bottom + 2%y

End If
 

Attachments

  • BuildError2.jpg
    BuildError2.jpg
    289.8 KB · Views: 146
Upvote 0

MList

Member
Licensed User
Thanks,
I set the visibilty condition in the program, according to the visibility i can change the size of clv Select.
I use this page for all kind of selections in my programm and change the visibilty of the input fields according
to the selection needed.
If the input fields are not needed, i can show a bigger clvSelet view....
 
Upvote 0
Top