Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to Test iPhone Application on Actual Device rather than Simulator?

I wants to test my own application to my actual iPhone Device rather then simulator.

So, is there any chance to do so with ?

I have an apple developer account.. But don't know the procedure, Please help me if u have any solutions..

Thanks in advance...

like image 309
Nirmal Avatar asked Dec 13 '22 02:12

Nirmal


1 Answers

Log in to http://developer.apple.com/iphone/ with your developer id and password. Then:

  1. http://developer.apple.com/iphone/manage/team/index.action and set up your team.
  2. http://developer.apple.com/iphone/manage/certificates/team/index.action to create your certificate
  3. Download the certificate you just created and double click on it to run Keychain Access and install it.
  4. http://developer.apple.com/iphone/manage/devices/index.action to enter your iPhone's id
  5. http://developer.apple.com/iphone/manage/bundles/index.action create an appID
  6. http://developer.apple.com/iphone/manage/provisioningprofiles/index.action to download a provisioning profile
  7. Drop that provisioning profile onto Xcode
  8. Go into your project's info.plist and change your Bundle identifier to be the same as you used for the provisioning profile, minus everything up to the first "."
  9. Go into your project's Build Info, and select the appropriate Code Signing Profile
  10. I think now you're ready to go. Select an iPhone Device from the pop-up menu in your main project browser window, plug your iPhone in and let Xcode see it, and then Build and Run.
like image 73
mahboudz Avatar answered May 04 '23 00:05

mahboudz