Hello,
I have an inapp purchase ( auto-renewing subscription ) in one of my apps. When I build it with non-store provision file , there is no problem with the in app purchase , the local price of the in app purchase shows correctly in my app and when i click to buy , it opens the purchase window of apple inside the app where you have to confirm the payment to finish.
Today, my app got approved , but the price of the inapp purchase shows blank there and when i click on the purchase I directly get msgbox saying " purchase not completed" which is the part :
this means that purchases are not initialized while in the distributed app . My only idea is app is approved 6 hours ago maybe something is not synced yet with stg. But if it is not the case , can it be a problem with stg ?
TY
I have an inapp purchase ( auto-renewing subscription ) in one of my apps. When I build it with non-store provision file , there is no problem with the in app purchase , the local price of the in app purchase shows correctly in my app and when i click to buy , it opens the purchase window of apple inside the app where you have to confirm the payment to finish.
Today, my app got approved , but the price of the inapp purchase shows blank there and when i click on the purchase I directly get msgbox saying " purchase not completed" which is the part :
B4X:
Sub myStore_PurchaseCompleted (Success As Boolean, Purchases As Purchase)
Log("Purchase completed")
If Purchases.IsInitialized Then
Log("Product: " & Purchases.ProductIdentifier & ", date=" & DateTime.Time(Purchases.TransactionDate) & _
", Transaction identifier=" & Purchases.TransactionIdentifier)
Else
Msgbox("Purchase NOT Completed","Error")
End If
end sub
this means that purchases are not initialized while in the distributed app . My only idea is app is approved 6 hours ago maybe something is not synced yet with stg. But if it is not the case , can it be a problem with stg ?
TY