Update to support Xcode 26.2 coming?

@Scott_Harrison @vlads Hello Gentlemen, any idea when a new update will support Xcode 26.2?

1 Like

Xcode 26.3 is coming in a few days, we are probably just going to wait for that

2 Likes

Just sharing information for building using XCode 26.2.

This works when preparing an app for deployment to a device. After Build: Show in Finder, then:

Extract entitlements, fix them, re-sign

codesign -d --entitlements /tmp/ent.plist ~/Projects/MyProject/MyApp.app 2>/dev/null

Create correct entitlements

cat > /tmp/fixed-ent.plist << ‘EOF’

<?xml version="1.0" encoding="UTF-8"?> application-identifier KMLP3DWNL9.com.myname.myapp get-task-allow keychain-access-groups KMLP3DWNL9.com.myname.myapp com.apple.developer.team-identifier KMLP3DWNL9 EOF

Re-sign with correct entitlements

codesign --force --sign “iPhone Developer: My Name (KMLP3DWNL9)” --entitlements /tmp/fixed-ent.plist ~/Projects/MyProject/MyApp.app