app-store

Availability of a name for an app in the AppStore

陌路散爱 提交于 2019-12-29 12:16:02
问题 Is there a way to check if a name is available in the AppStore with an HTTP request? Without manually creating the App in iTunes Connect? 回答1: UPDATE 2015-01-05, per SarahR : If you already have an app created, you can use its SKU for the app you want to check, and you'll get an error on submission that that SKU has already been used. If you don't remember the SKU you used for an existing app, you can go to the app details page, choose "MORE", then "about this app". If you don't already have

Submitting to the App Store Using Xcode

大憨熊 提交于 2019-12-29 09:41:31
问题 So! Thought this would be easy trying to use TestFlighApp inside itunesconnect but this is what stops me: How I got this message is: Product > Archive > Success! > Submit to App Store... > Select My Team > Submit > Uploading Archive ( Verifying assets with the iTunes store BAM! Message Things I've Tried Verified my Project: since this Xcode project was created around 2011, I noticed I had to validate settings by clicking Editor > Validate Settings... didn't fix my problem. actually created

App size double on archiving iphone

試著忘記壹切 提交于 2019-12-29 09:05:41
问题 I have checked that my app product size is around 10MB but when I build it for archiving it shows me the Appstore size as 20MB i.e. it almost got doubled. But when I see archive in folder its size is still 10MB, I dont know why this happening may be its due to support of both architectures i.e. armv6 and armv7. If I submit the app with 20MB what my final size on the Appstore would come. If anyone have any idea then please let me know. 回答1: The iOS App store servers will encrypt the executable

App size double on archiving iphone

十年热恋 提交于 2019-12-29 09:05:31
问题 I have checked that my app product size is around 10MB but when I build it for archiving it shows me the Appstore size as 20MB i.e. it almost got doubled. But when I see archive in folder its size is still 10MB, I dont know why this happening may be its due to support of both architectures i.e. armv6 and armv7. If I submit the app with 20MB what my final size on the Appstore would come. If anyone have any idea then please let me know. 回答1: The iOS App store servers will encrypt the executable

Submit multiple iOS apps with same code base

老子叫甜甜 提交于 2019-12-29 06:23:12
问题 I'm trying to develop an app that can be used to generate multiple apps. Let's say for now I'm doing an app for fruits, but tomorrow the client will want to create an app for vegetables, and the day after tomorrow for meats, and so on. So what I'm doing right now is creating an app with same codebase and generating different Targets for each topic (fruits, vegetables, etc.) with its own settings. That is working really good for now, but I want to make sure that my apps all passes the AppStore

Check Update Available App Store

隐身守侯 提交于 2019-12-29 03:40:22
问题 Anyone known if exist some way to check if exist one update available on App Store?? I want notify to user the new updates on my application begins... Thanks 回答1: Just use ATAppUpdater, it is 1 line, thread-safe and fast. It also have delegate methods if you would like to track user action. Here is an example: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[ATAppUpdater sharedUpdater] showUpdateWithConfirmation]; // 1 line of

How to upload an iOS app to the app store via command line

纵饮孤独 提交于 2019-12-29 02:33:49
问题 As part of the countinues integration process of my iPhone application, I want to create a process that will automatically upload the app (.ipa) file to the apple app store. I already managed to create the package and validate it. Is there a way to upload the ipa file to the appstore via command line? 回答1: The previous reply does not work with the new iTunes Connect any more. You need to use the iTunes Transporter to upload your app to iTunes Connect. Check out the source code of deliver on

Error delivering iOS App update. “This bundle is invalid. Apple is not currently accepting applications built with this version of the SDK.”

无人久伴 提交于 2019-12-29 01:34:10
问题 I reticently delivered an app to the iOS App store on 1/24/2014. It's an iO7/iPhone only app and everything was delivered correctly. As of yesterday my app was approved and it is currently visible in the App Store. I put together a small update and am currently working on getting it delivered using Application Loader. However, now when I upload my production IPA it gets rejected due to what seems like a sdk error. Messages: Apple's web service operation was not successful Unable to

iPhone only app rejected for not running on iPad

女生的网名这么多〃 提交于 2019-12-28 13:44:34
问题 I received the following from Apple. I tried fixing the constraints for just iPad but I can get the scroll bar to come on top. How would I fix this? It is an iPhone only app. Thanks From Apple 2. 4 PERFORMANCE: HARDWARE COMPATIBILITY Performance - 2.4.1 We noticed that your app did not run at iPhone resolution when reviewed on iPad running iOS 10.2. Specifically, we were unable to register as the sign-up option was behind the amount section. We've attached screenshot(s) for your reference.

Application Identifier Entitlement Value has Changed?

≯℡__Kan透↙ 提交于 2019-12-28 12:16:30
问题 I just got this warning when submit my app to app store, it is just warning, not error. This app was transferred from another developer account to my account before, so the prefix of the App ID is changed.. I think this should be unavoidable, but since I got this warning, what does it affect my app actually? What Keychain access would be lost? 回答1: Have you transferred the app from another developer account to your one? The previous provisioning ID will obviously be different. UPDATE - For