How to convert .xcarchive to .ipa for client to submit app to app store using Application Loader

Create Xarchieve file by using Xcode, click product->archive first right click on xarchive file-> show in finder again right click on xarchive file-> show package contents Then open folder products->applications, here you get the your application file Now, Drag and drop this one to itunes store’s app directory(find apps drop down menu at right top … Read more

Does App Store reject submission if NSAllowsArbitraryLoads set to YES?

Thanks for everyone’s answer. The good news is Apple Accepted my app with NSAllowsArbitraryLoads set to YES. UPDATE (Thanks @Vijayts): Apple will reject Apps not conforming to ATS after the end of Dec 2016. Source However, If you need to load a http:// resource only in web (UIWebView/WKWebView/SafariViewController) then the following should suffice. <key>NSAppTransportSecurity</key> <dict> … Read more

Procedure to submit iPhone application to App Store? [closed]

You can join the developer program and watch the video without paying. It’s on Video → App Store and Distribution after you’ve logged in: https://developer.apple.com/videos/app-store-and-distribution/ You may also read: https://developer.apple.com/ios/submit/ What you can’t do without putting down your $99 is get your application on an iPhone or iPod touch (and that includes your own).

Restricting app installations from AppStore only to users with iPhone 5/5s/5c

I have found this Important note: The store rejects a binary that supports only armv7s. If armv7s is included in the Valid Architectures list, armv7 must also be included. From App Distribution Guide. Specifying armv7s in your Info.plist‘s UIRequiredDeviceCapabilities should be enough as it means it requires compatibility with the armv7s instruction set, which in … Read more

If I use the PayPal gateway in my iPhone app, will Apple approve it? [closed]

After 4 months have passed I just want to inform you about the outcome of the discussed topic (at least for our company) : Since this questions has some meaning for our business I directly asked Apple (appreview@apple.com) in October ’11 before starting to implement the paypal API into our App: Dear review team, I … Read more