Wish Change key path in #Region section

webhost.company

Active Member
Licensed User
Longtime User
I have 5 apps with different provisions because each app have the push notification and apple id signing
That is so hard to change the key path for each app
Because I forgot to change it and B4i get an error and I will be confused
Can We add the key path in the #Region section for easily programming?
Thanks
 

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
You don't have to change the key path.

You should be using

#ProvisionFile
and
#CertificateFile

e.g.
B4X:
#if StoreRelease
#ProvisionFile: bcg_distribution.mobileprovision
#Else
#ProvisionFile:   bcg_adhoc.mobileprovision
#End If

#CertificateFile: ios_bcg_distribution.cer

When you download the files from Apple just rename and store in the same directory.
 

webhost.company

Active Member
Licensed User
Longtime User
You don't have to change the key path.

You should be using

#ProvisionFile
and
#CertificateFile

e.g.
B4X:
#if StoreRelease
#ProvisionFile: bcg_distribution.mobileprovision
#Else
#ProvisionFile:   bcg_adhoc.mobileprovision
#End If

#CertificateFile: ios_bcg_distribution.cer

When you download the files from Apple just rename and store in the same directory.
O yes I know now Thank you
 
Top