Check if iOS app is live in app store
Posted
by
MSK
on Stack Overflow
See other posts from Stack Overflow
or by MSK
Published on 2012-03-28T11:26:00Z
Indexed on
2012/03/28
11:29 UTC
Read the original article
Hit count: 196
Is it possible somehow to code like below in iOS app ?
if(app is live in app store)
{
//Do something
}
else
{
//Do other thing
}
I wanted to avoid cases where our QE/Dev team is using app for testing. Is there a way I can detect how app code is signed (Developer/Adhoc/Distribution) to check ? Even if it is possible, it will not eliminate cases when Apple is using our app for testing as part of review. We recorded many downloads of our content by Apple before our app goes live in App store.
© Stack Overflow or respective owner