Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy iOS app to a iPhone using Delphi Seattle without Apple developer account?

XCode 7 no longer needs an Apple developer account to deploy apps to iPhone. On Delphi, to deploy apps we must use the provisioning configurations to deploy it. This configuration is only available to an Apple developer member.

With this new possibility, someone knows how to make delphi deploy without this configuration?

like image 509
Rodrigo Farias Rezino Avatar asked Sep 19 '15 01:09

Rodrigo Farias Rezino


1 Answers

  1. Create an iOS application in XCode 7 with the bundle identifier you want to use in your Delphi project
  2. Deploy the XCode application to your device. XCode will install the certificates and profiles (Project -> Run)
  3. Set CFBundleIdentifier in the Delphi project options to the chosen bundle identifier.
  4. Select the Development Configuration in the Delphi project manager
  5. Press F9 to deploy your application

I've tested this with Delphi 10 Seattle and it works.

like image 147
Sebastian Z Avatar answered Nov 03 '22 01:11

Sebastian Z