user1360291
user1360291

Reputation: 65

how to add New device for testing and make a new certificate for testing

I have a exiting certificate for testing on device but i have added a new device for testing so how may create a new provisioning so that i can test the app on new device also

Upvotes: 5

Views: 16326

Answers (2)

Dinesh
Dinesh

Reputation: 6532

Try to follow instruction for add new device for testing:

This worked for me:

  1. Login to your iphone provisioning portal through developer.apple.com
  2. Add the UDID in your iphone device Go back to XCode, open up the Organizer and
  3. select "Provisioning Profiles", ensure that "Automatic Device
    Provisioning" is checked on the top right pane, then click on the
    "Refresh" button, and magically all your devices set in the
    provisioning portal will be automatically added.

Thanks...!

Upvotes: 9

Maksim
Maksim

Reputation: 2052

If you need to add a testing device, you should go to developer.apple.com -> Member Center -> iOS Provisioning Portal -> Select Devices on the left tab menu-> Press Add Device button -> insert test device UDID and save this new device.

After that you need to go to Provisioning section (on the left tab menu) and create new or edit existing development and distribution provisioning profiles. After that download new development and distribution provisioning profiles on your development Mac, add this profiles in Xcode Organizer to your test devices (iPhones of iPods) and update Target settings of your application project for Code signing (Select your Target -> Build Settings -> Code signing Identity option).

Thats all - now you can run your app on test devices. I would also recommend you to look at TestFlight service, which can provide you a useful way of over-the-air application builds distribution.

Hope that will help you! :)

Upvotes: 12

Related Questions