iOS Question iadmob error: Provisioning profile "ordina" doesn't support the In-App Purchase capability

fifiddu70

Well-Known Member
Licensed User
Longtime User
Hello, i received this error from the title, help.

i have added:

B4X:
#PlistExtra: <key>GADIsAdManagerApp</key><true/>

    #AdditionalLib: libsqlite3.dylib

    #AdditionalLib: libz.dylib

    #AdditionalLib: WebKit.framework

and this:

B4X:
adview1.Initialize("Ad","ca-app-pub-**********************/***********",Page1,adview1.SIZE_BANNER) 'Admob reference
    'adview1.SetTestDevices(Array("*************************")) 'for testing ads
    adview1.LoadAd
    adview1.Alpha = 1
    adview1.Visible = True
    adview1.BringToFront
    Page1.RootPanel.AddView(adview1, 0%x, 90%y, 320dip, 50dip)

i have iadmob libraries 1.60 is correct?
 

Star-Dust

Expert
Licensed User
Longtime User
Hello, i received this error from the title, help.

i have added:

B4X:
#PlistExtra: <key>GADIsAdManagerApp</key><true/>

    #AdditionalLib: libsqlite3.dylib

    #AdditionalLib: libz.dylib

    #AdditionalLib: WebKit.framework

and this:

B4X:
adview1.Initialize("Ad","ca-app-pub-**********************/***********",Page1,adview1.SIZE_BANNER) 'Admob reference
    'adview1.SetTestDevices(Array("*************************")) 'for testing ads
    adview1.LoadAd
    adview1.Alpha = 1
    adview1.Visible = True
    adview1.BringToFront
    Page1.RootPanel.AddView(adview1, 0%x, 90%y, 320dip, 50dip)

i have iadmob libraries 1.60 is correct?
He is telling you that the problem is in your Provisioning profile.

So you have a profile (see in your Apple account where you created the certificates and profiles) that does not allow the sale.

On the other hand, it is not a coding error because the compiler does not give it to you. So it's a rejection from Apple, it's not a code question.
 
Upvote 0

fifiddu70

Well-Known Member
Licensed User
Longtime User
He is telling you that the problem is in your Provisioning profile.

So you have a profile (see in your Apple account where you created the certificates and profiles) that does not allow the sale.

On the other hand, it is not a coding error because the compiler does not give it to you. So it's a rejection from Apple, it's not a code question.
 
Upvote 0
Top