1

I've never worked in Xcode before since I just make my games in unity; however, one of the ad plugins I'm using wants me to perform the step below. How exactly do I add that framework in xcode(Also do I need to download the framework online or is it already included)?

*— Step 4: Add CoreTelephony to your iOS project (iOS only)

Add the CoreTelephony framework to the Xcode project that Unity generates.*

Daniel
  • 23,129
  • 12
  • 109
  • 154
user1592843
  • 11
  • 1
  • 2

1 Answers1

3

I've written a post on how to add frameworks to an Xcode project:

http://cupsofcocoa.com/2012/06/16/adding-frameworks-to-an-xcode-project/

Basically:

  1. Select the top-level project
  2. Go to Build Phases, expand Link Binaries with Library
  3. Click the +, select the framework you want, and click Add
FeifanZ
  • 16,250
  • 7
  • 45
  • 84
  • This is the equivalent link, although of course this content is probably outdated at this point: https://cupsofcocoa.wordpress.com/2012/06/16/adding-frameworks-to-an-xcode-project/ – FeifanZ Jan 24 '19 at 19:58