xcode6 - What are Embedded Binaries in Xcode? -
i'm using alamofire in swift project, , part of manual installation instructions add alamofire under embedded binaries in general tab application target.

what embedded binaries?
embedded binaries binary files copied application bundle when build project. use embedded binaries when application relies on third-party frameworks people can use application without needing frameworks installed on machine. embedded binaries keep users having manually install third-party frameworks. application uses framework embedded.
in alamofire example application relies on alamofire. if didn't embed alamofire framework, nobody able use application unless installed alamofire manually. embedding alamofire application can run application.
Comments
Post a Comment