Hi, Guys
Provisioning files: In the Project Attributes I use the following code to select either the Store or non-store provisioning profiles for release mode.
As you see, I have to edit lines #5 and #8 to switch between store and non-store provision files.
Question: Can this be done with a compiler switch?
Kind regards
Dave
Provisioning files: In the Project Attributes I use the following code to select either the Store or non-store provisioning profiles for release mode.
Select Provisioning file for release mode:
#If RELEASE
#CertificateFile: ios_distribution.cer
' Below is store provision profile (use for release to Apple)
'#ProvisionFile: SuperOrder.mobileprovision
' Below is a non-store provision profile (use if you want a locally built release version).
#ProvisionFile: SuperOrderAdhoc.mobileprovision
#END IF
As you see, I have to edit lines #5 and #8 to switch between store and non-store provision files.
Question: Can this be done with a compiler switch?
Kind regards
Dave