Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

xcode

ios

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

like image 488
user1360291 Avatar asked Dec 01 '22 00:12

user1360291


2 Answers

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! :)

like image 139
Maxim Mikheev Avatar answered Dec 04 '22 06:12

Maxim Mikheev


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...!

like image 26
Dinesh Avatar answered Dec 04 '22 05:12

Dinesh