We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b6ba9 commit 69d19b3Copy full SHA for 69d19b3
Tools/build.sh
@@ -81,6 +81,15 @@ main() {
81
# remove duplicate assets if any
82
find "Release/" -name '_CodeSignature' -exec rm -rf {} +
83
84
+ # codesign
85
+ SIGNING_IDENTITY=$(security find-identity -v -p codesigning | grep "Distribution: Leanplum, Inc." | awk '{print $2}')
86
+ if [ -n "$SIGNING_IDENTITY" ]; then
87
+ echo "Codesigning xcframeworks"
88
+ find "Release/" -name '*.xcframework' -exec codesign --timestamp -s $SIGNING_IDENTITY {} +
89
+ else
90
+ echo "Signing Identity not found"
91
+ fi
92
+
93
# zip all iOS frameworks
94
zip_ios
95
0 commit comments