iphone - In iOS,In app purchase working with development/Ad hoc provision but not working when application on app store -


i had developed ios application,i had implemented in-app purchase on application.

it looks working development provision ad hoc provision.

but when push build app store.apple approve it.however,it not working on live application.

i again push 2 more new versions minor change still in-app purchase not working production provision (application app store)

then after put error log , can show on server.i found not getting in-app purchase product itunes [when application on app store] fetched using following code:

skproductsrequest *request = [[skproductsrequest alloc] initwithproductidentifiers: productidentifiers];   request.delegate = self;  [request start]; 

here,productidentifiers array of in-app purchase bundle ids.

though still working when run on xcode.

what can reason.am miss something?

please check in xcode following things:

go targets
target -> under build settings -> provision profiles -> release -> check if have selected proper relase/production provision profile
, under signing identity -> release-> check proper signing identity selected

repeat same product well.

some tips:
can implement analytical tool check code not behaving can track it. can refer link : flurry

all best! :)


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -