Allan Padgett
Allan Padgett

Reputation: 11

Is there a pre-built Bolts.framework for Objective-C available?

We have tried to update our Bolts.framework (to remove UIWebView references) from the GitHub sources and failed. And the one provided on back4app.com is out of date.

Does anyone know if there is an already built Bolts.framework ZIP file posted anywhere with the latest updates?

Upvotes: 1

Views: 505

Answers (1)

Andrey Keske
Andrey Keske

Reputation: 41

I spend almost whole day to built this lib, so few steps to build Bolts:

  1. Download latest release https://github.com/BoltsFramework/Bolts-ObjC/releases
  2. After that download xtoolchain from https://github.com/parse-community/xctoolchain-archive
  3. Move files and folders from xtoolschain folder to Bolts/Vendor/xtoolchain
  4. So now you can build Bolts running command sh build_all.sh from Bolts/scripts
  5. In Bolts folder you can found build folder and the framework will be here build/Debug-iphonesimulator/Bolts.framework

Upvotes: 4

Related Questions