iOS Question [solved] Application compiled with a provisioning profile that is not intended for the store

Carlos marin

Active Member
Licensed User
Longtime User
hello everyone
I'm compiling the app to upload to the store but I get this message, am I doing something wrong or can I continue uploading the app like this?

1733801101630.png


I am following this tutorial
https://www.b4x.com/android/forum/threads/dummies-guide-to-getting-started-with-b4i.124564/



Captura2.JPG
Captura.JPG



Captura3.JPG


mi app configuration:
#Region  Project Attributes
    #ApplicationLabel: Comiuny
    #Version: 1.0.0
    'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
    #iPhoneOrientations: Portrait
    #iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
    #Target: iPhone
    #ATSEnabled: True
    #MinVersion: 12
    #CertificateFile: ios_distribution.cer
    #ProvisionFile: provisionprodpush.mobileprovision
#End Region

Thank you very much for the help
 

f0raster0

Well-Known Member
Licensed User
Longtime User
#CertificateFile: ios_distribution.cer
#ProvisionFile: provisionprodpush.mobileprovision
make sure you are using the correct distribution certificate and provisioning profile. The names might look correct, but they may not have been created as production profiles

From the message in your picture, it seems the compilation was done using the developer profile instead of the distribution profile. You might want to double check the path to the correct certificates and provisioning profilesand try again
What does the last sentence say? Something with simulator? Make sure to set the ip address of a device and not simulator (it can be a non-existent ip).
"Aplicación compilada con perfil de provisión que no es para la tienda" = Application compiled with a provisioning profile that is not intended for the store.
 
Last edited:
Upvote 0

Carlos marin

Active Member
Licensed User
Longtime User
I compiled the application without sending it to the emulator and this solved my problem, thank you all very much for the help 🙏🙏🙏
 
Upvote 0
Top