iOS Question pushnotifications-release (solved)

f0raster0

Well-Known Member
Licensed User
Longtime User
hey guys,

when developing we're using
- Push notifications: Apple Push Notifications Services SSL Certificates->Production SSL Certificate.
- Production certificate: Production-> Appstote and ad hoc certificate.
- Provisioning Profile-> Distribution

In release (developing) we have been using:
#iPhoneOrientations: Portrait
', LandscapeLeft, LandscapeRight
'#iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
' #If RELEASE
' #CertificateFile: ios_distribution.cer
' #ProvisionFile:????.mobileprovision
' #END IF
#Entitlement: <key>aps-environment</key><string>production</string>
'use the distribution certificate
#CertificateFile: ios_distribution.cer
'use the provision profile that goes with the explicit App Id
#ProvisionFile: pushapp.mobileprovision
Ref: https://www.b4x.com/android/forum/t...ions-push-messages-server-not-required.68645/

our app is now ready to upload to Apple store, then.. do we have to use?:
#If RELEASE
#CertificateFile: ios_distribution.cer
#ProvisionFile:????.mobileprovision
#END IF
 
Last edited:

f0raster0

Well-Known Member
Licensed User
Longtime User
You only need to switch to a store provision profile.
Does it mean we don't have to use "if.. release...." ?

so,only have to be changed ProvisionFile: pushapp.mobileprovision for a store provision profile?

#Entitlement: <key>aps-environment</key><string>production</string>
#CertificateFile: ios_distribution.cer
'#ProvisionFile: pushapp.mobileprovision
#ProvisionFile: storeapp.mobileprovision
 
Last edited:
Upvote 0
Top