Code Signing
-
Qt Version: 5.5.1
My App is using Qt 5.5.1, It's normally work after deploy.
But after CodeSigning, the app will crash when start.here is error report. It's say crash in webkit? but why only broken after code signing

here is my code signing step
step1 sign the files:
find "AppPath" -type f -exec codesign -s 'Developer ID Application: ....' --fo --option=runtime --timestamp {} ;step2: sign framework
find "AppPath" -type d -name "*.framework" -exec codesign --verbose --force --sign 'Developer ID Application: ....' {} ;step3 sign the app:
codesign -s "Developer ID Application: ...." --fo --option=runtime --timestamp "AppPath"if any one have any idea, please tell me!!! thanks alot.
-
https://github.com/electron-userland/electron-builder/issues/4040
it's fixed by add entitlement file when code signing.