Skip to content

Instantly share code, notes, and snippets.

View EngrAhsanAli's full-sized avatar
👀
AI enthusiast

Ahsan Ali EngrAhsanAli

👀
AI enthusiast
View GitHub Profile
@EngrAhsanAli
EngrAhsanAli / create_xcframework.sh
Created July 30, 2020 12:45
Script for create XCFramework iOS MacOS with all dependencies
xcodebuild archive \
-workspace MyWorkspace.xcworkspace \
-scheme MyScheme \
-destination "generic/platform=iOS Simulator" \
-archivePath "archives/MyScheme-Simulator" \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
xcodebuild archive \
-workspace MyWorkspace.xcworkspace \