briannadoubt / PromiseKit

A binary framework package with UIKit and Foundation PromiseKit extensions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PromiseKit

Build PromiseKit.xcframework from the origin repository.

Add module file

module PromiseKit {
    umbrella header "PromiseKit.h"
    export *
}
xcodebuild archive \
    -scheme PromiseKit \
    -destination "generic/platform=iOS" \
    -archivePath "archives/PromiseKit-iphoneos.xcarchive" \
    SKIP_INSTALL=NO \
    BUILD_LIBRARY_FOR_DISTRIBUTION=YES
        
        
xcodebuild archive \
    -scheme PromiseKit \
    -destination "generic/platform=iOS Simulator" \
    -archivePath "archives/PromiseKit-iphonesimulator.xcarchive" \
    SKIP_INSTALL=NO \
    BUILD_LIBRARY_FOR_DISTRIBUTION=YES
        
 xcodebuild -create-xcframework \
 -framework archives/PromiseKit-iphonesimulator.xcarchive/Products/Library/Frameworks/PromiseKit.framework \
 -framework archives/PromiseKit-iphoneos.xcarchive/Products/Library/Frameworks/PromiseKit.framework \
 -output archives/PromiseKit.xcframework

About

A binary framework package with UIKit and Foundation PromiseKit extensions


Languages

Language:Objective-C 76.7%Language:Swift 23.3%