iOS Question Compilation b4i Release without Provision file

ken87

Active Member
Licensed User
Longtime User
I have attempted to compile this test project. I registered the production certificate and downloaded the production Provison file but I always get error that the source code and screenshots are not included

B4X:
'Code module
#Region  Project Attributes
    #ApplicationLabel: app
    #Version: 1.0.0
    'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
    #iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
    #iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
    #Target: iPhone, iPad
    #ATSEnabled: True
    #MinVersion: 8
     #If RELEASE
          #CertificateFile:ios_distribution.cer
          #ProvisionFile: app.mobileprovision
    #END IF
#End Region

Sub Process_Globals
    'These global variables will be declared once when the application starts.
    'Public variables can be accessed from all modules.
    Public App As Application
    Public NavControl As NavigationController
    Private Page1 As Page

End Sub

Private Sub Application_Start (Nav As NavigationController)
    'SetDebugAutoFlushLogs(True) 'Uncomment if program crashes before all logs are printed.
    NavControl = Nav
    Page1.Initialize("Page1")
    Page1.Title = "Page 1"
    Page1.RootPanel.Color = Colors.Red
    NavControl.ShowPage(Page1)
End Sub

Private Sub Page1_Resize(Width As Int, Height As Int)
   
End Sub

Private Sub Application_Background
   
End Sub

Error encountered is:

B4X:
Compilazione del codice di layouts    (0.00s)
Compilazione Progetto Xcode    (0.90s)
Invio dati a compilatore remoto.    (25.65s)
    Applicazione compilata con un Provision Profile non memorizzato
Completato con successo.
L'App sarà eseguita nel simulatore.
Questa è una versione per simulatore. Non pubblicarla sull'App Store.


Can you help me I don't know what to do anymore? I tried two different PCs but nothing. Is the problem to be found on the 6.30 version of b4i?
 

Attachments

  • uno.png
    uno.png
    48.5 KB · Views: 117
  • due.png
    due.png
    31.6 KB · Views: 123
  • 3.png
    3.png
    19.1 KB · Views: 122
  • 4.png
    4.png
    35.9 KB · Views: 132
  • 5.png
    5.png
    25.4 KB · Views: 115
  • 6.png
    6.png
    22.6 KB · Views: 130
  • 7.png
    7.png
    16.8 KB · Views: 134
  • 10.png
    10.png
    11.5 KB · Views: 124
  • 8.png
    8.png
    9.8 KB · Views: 126
Last edited:

ken87

Active Member
Licensed User
Longtime User
Hi I have a doubt. How do I make sure it points to this folder D: \ b4ikey In the settings I put that folder but in my opinion it is not reading it
 
Upvote 0

hatzisn

Well-Known Member
Licensed User
Longtime User
Have you set it in the set it in the "Tools > Configure paths" ?
 
Upvote 0

hatzisn

Well-Known Member
Licensed User
Longtime User
Have you set a RELEASE conditional symbol with Ctrl+B ?
 
Upvote 0

ken87

Active Member
Licensed User
Longtime User
I read that the problem could be xcode 13 which has problems with the fileprovision i am downloading 12.5 laughs at you?
 
Upvote 0
Top