Siddharth
Siddharth

Reputation: 5219

Including a bundle in XCode 5

I am very new to iOS programming.

I am looking to use Google sign-in in my iOS app. I read through the google docs and have understood what needs to be done.

There is one sentence which I do not understand how to do -

If you plan to use the sign-in button provided by the SDK, include the GooglePlus.bundle in your XCode project to add it to your target.

I do not know how to include a bundle into the Xcode project and add it to the target. I googled but could not find an answer.

Can someone help me here?

Upvotes: 0

Views: 237

Answers (1)

TotoroTotoro
TotoroTotoro

Reputation: 17622

Copy the bundle file to your project, as described here.

You'll see the following dialog:

enter image description here

Here you'll need to do 2 things:

  1. check the checkbox for "Copy items into destination group's folder."
  2. check the checkboxes next to the names of projects where you'll be using the Goolge SDK.
  3. click "Add"

Upvotes: 1

Related Questions