In-App Purchase

Hi everyone.I have integrated in-pp purchase in my application,I have used Non-Renewable subscription for 1 year.When I am getting success from iTunes I am hitting Local server,So My backend people are saying they are getting success and they asked me to check in iTunes I have checked it is showing $0 sales.So please any one help me where can i find this or it may take time to update please can any one help me?

Hi sailaja, did you manage to solve the issue? Im planning to create an app with In-app subscription and wanted to know about your experience.
Thank you!

Hi …Please can you share the in-App purchase app if you create?

You will NOT see any kind of sales in iTunes connect for testing.

You need to beta test the app and confirm the receipt from Apple if everything is working. Or test IAP with test users in iTunes connect

This would be a good place to start

https://help.apple.com/app-store-connect/#/devae49fb316

Hi ,Thank you, I am facing one issue like below image,always i am getting this pop up every-time .Please can you help me out of this.

Is your sandbox account signed in for the device?

You can check this in settings, in iTunes and App Store

I am following Chris Display In -App Purchase from RevevueCat(Lesson 5) however the LayoutConstraint on height is generation error messages

This is the code I have reproduced from the video:

`func sbutton(stackV: UIStackView,title: String,duration: String,price: String, tag: Int) {
let button = UIButton(type: .system)
button.tintColor = .white
button.backgroundColor = .purple
button.setTitle(title + " " + duration + " " + price, for: .normal)
button.addTarget(self, action: #selector(purchaseTapped(sender:)), for: .touchUpInside)
button.tag = tag

    //Add it to stackview
    stackV.addArrangedSubview(button)
    
    let height = NSLayoutConstraint(item: button, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .height, multiplier: 1, constant: 90)
    
     //button.addConstraint(height)
    stackV.addConstraint(height)
    
    let width = NSLayoutConstraint(item: button, attribute: .width, relatedBy: .equal, toItem: stackV, attribute: .width, multiplier: 1, constant: 0)
    
    //stackV.addConstraint(height)
    stackV.addConstraint(width) 
    
}`

height constraint is generation errors

[LayoutConstraints] Unable to simultaneously satisfy constraints.

Probably at least one of the constraints in the following list is one you don’t want.

Try this:

(1) look at each constraint and try to figure out which you don’t expect;

(2) find the code that added the unwanted constraint or constraints and fix it.

Paste your message into this website, like the instructions show!

Elements need 4 constraints, height and width, and x and y.