iOS Question Local Builder Error

ilan

Expert
Licensed User
Longtime User
hi

i am trying again to install an app after making minor updates using the local builder but i am getting an error

it worked 1 month ago

B4i Version: 8.51
Parsing code. (0.23s)
Building folders structure. (0.05s)
Running custom action. (0.03s)
Compiling code. (0.23s)
Compiling layouts code. (0.03s)
Building Xcode project. (0.28s)
Swift libraries found
Preparing project for builder. (4.91s)
Project size: 12.19 MB
Sending data to remote compiler. Error
Out: Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Release PRODUCT_NAME=result CONFIGURATION_BUILD_DIR=/Users/ilantetruashvili/Downloads/macserver85/UploadedProjects/<user id>/Payload "CODE_SIGN_IDENTITY=iPhone Developer: ilan TETRUASHVILI (6Y23UV77K8)" "OTHER_CODE_SIGN_FLAGS=--keychain <user id>" PROVISIONING_PROFILE=6e6225dc-8510-42e3-9866-17050bd82c4c -arch arm64

User defaults from command line:
IDEPackageSupportUseBuiltinSCM = YES

Build settings from command line:
ARCHS = arm64
CODE_SIGN_IDENTITY = iPhone Developer: ilan TETRUASHVILI (6Y23UV77K8)
CONFIGURATION_BUILD_DIR = /Users/ilantetruashvili/Downloads/macserver85/UploadedProjects/<user id>/Payload
OTHER_CODE_SIGN_FLAGS = --keychain <user id>
PRODUCT_NAME = result
PROVISIONING_PROFILE = 6e6225dc-8510-42e3-9866-17050bd82c4c

note: Using codesigning identity override: iPhone Developer: ilan TETRUASHVILI (6Y23UV77K8)
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (1 target)
Target 'B4iProject' in project 'B4iProject' (no dependencies)

GatherProvisioningInputs

CreateBuildDescription

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk -x c -c /dev/null

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk -x objective-c -c /dev/null

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --version --output-format xml1

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/usr/bin/actool --print-asset-tag-combinations --output-format xml1 /Users/ilantetruashvili/Downloads/macserver85/UploadedProjects/<user id>/Images.xcassets

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/usr/bin/actool --version --output-format xml1

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details

ExecuteExternalTool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk -x c -c /dev/null

Build description signature: b3720342f28b79aee5c65b411ab0ee72
Build description path: /Users/ilantetruashvili/Downloads/macserver85/UploadedProjects/<user id>/build/XCBuildData/b3720342f28b79aee5c65b411ab0ee72.xcbuilddata
/Users/ilantetruashvili/Downloads/macserver85/UploadedProjects/<user id>/B4iProject.xcodeproj: error: "B4iProject" requires a provisioning profile. Select a provisioning profile in the Signing & Capabilities editor. (in target 'B4iProject' from project 'B4iProject')

Error: ** BUILD FAILED **


what is the reason for the error? any clue?

thanx
 

Sandman

Expert
Licensed User
Longtime User
Always search for "error" in the word salad that comes from Apple's compiler. In this case I could find this:

"error: "B4iProject" requires a provisioning profile. Select a provisioning profile in the Signing & Capabilities editor. (in target 'B4iProject' from project 'B4iProject')"

So it seems that you don't have a provisioning profile available.
 
Upvote 0
Top