app-store

Is there an API or any other method to automate the submission process?

放肆的年华 提交于 2019-12-03 07:20:34
问题 I have a number of apps which are similar in functionality and UI. I create the user interface by picking up variables from a .plist file. For instance, I save the source of the API from where I pick up the data. Creating a new app involves just changing the values in the .plist file and rebuilding the app, and finally submitting it to the App Store. Also, I need to create Ad-Hoc provision files and build test releases too. I wish to automate this process. For this I need to: Build the app

Make Update to a live iPhone app

萝らか妹 提交于 2019-12-03 07:05:45
I have an iPhone app which is aleready live on the app store...Now I want to make small updates to the app (fixes and adding iAd) How do I submit the new updated app..Will that create a new version OR is that not required? Also in iTunes Connect, I do not see any link which says Submit update or new version.. Do I first have to upload via Loader ...Please guide me. Thank you. You should update the "version" field in your .plist, then submit a new binary. In the application page, there is a "Add Version" button in the lower right corner, as follows: Click "Add Version", clarify what is being

Automatically download sales reports from iTunes Connect

不想你离开。 提交于 2019-12-03 06:57:00
I had a nice and hacky Perl script to automatically scrape and download sales report files from iTunes Connect. As of today, Apple overhauled the sales report site. It looks a lot nicer, but it uses a lot of JavaScript and simple scraping isn't going to work any more. So, does anybody know of a way to scrape this new site effectively? Some previous questions point to various scripts and online services. I presume they are all broken now as well. If you know of one that is still functional, please let me know. http://code.google.com/p/appdailysales/ was just updated to support the Sept 2010

apple sandbox test user account?

隐身守侯 提交于 2019-12-03 06:38:09
问题 I tried to created a test user for my IAP app for testing. Apple ask for the real credit card number in order to login the test user to apple store. I am afraid that apple store will charge me by chance while I do my testing. Do you have to provide real credit card number for sandbox user? 回答1: No you dont. Log out by going through: Settings -> Store Do NOT login with your test user. (Otherwise you get that credit card screen). Instead run your app and login with the test user when asked to.

InApp Purchase rejected in App Store

末鹿安然 提交于 2019-12-03 06:23:22
问题 I just got rejected on my Free app from app store. I uploaded 3 apps, HD(iPad), PayedIphone and freeiphone. In the free-version I had a link to the fullversion. Apparently I need inAppPurchase in the free-version rather than linking to the fullversion. How should I implement this in the easiest way? All I want is a button that says Buy full version and then the free-version becomes the full version. Is it possible to use just those two or do i need to create another full version for this

Updating iPhone Reachability on Network Changes

萝らか妹 提交于 2019-12-03 06:20:45
Edit 23.5.11 I'm now wondering whether I'm over engineering this. When I use an online connection, I handle it properly - either: in the background with a progress or activity indicator showing and if it fails, I display a suitable message OR I call another application, either Safari or Maps which will then do its own check and fail if there is no connection. That leaves the user in that other app that has failed, which is not perfect tho. So if I do what I'm suggesting below and standard Reachability returns not reachable and I then have to do a NSURLConnection in case the radios have gone to

Can't upload archive to app store since yesterday

♀尐吖头ヾ 提交于 2019-12-03 06:13:18
问题 2 days before I successfully uploaded the archive for my application and my application is on app store, but yesterday and today when I upload the archive I see "Uploading the archive" message (with subtitle "Sending api usage to itunes connect") at the beggining, but then I see "iTunes Store operation failed. This action couldn't be completed. Try again later" : When I try to upload the archive for another application, everything is OK, it's very strange, because since 2 days ago I only

WARNING ITMS-90080: \"The executable 'Payload/myapp.app/Frameworks/some-framework.framework' is not a Position Independent Executable

穿精又带淫゛_ 提交于 2019-12-03 06:09:26
I have previously been able to submit my application without issue. The only part of my workflow that changed was the use of Sourcetree. After pulling updates to the following frameworks, I receive this warning when submitting to the iOS App Store. I also receive an email that contains: Non-PIE Binary - The executable 'Payload/myapp.app/Frameworks/Alamofire.framework' is not a Position Independent Executable. Please ensure that your build settings are configured to create PIE executables. For more information, refer to Technical Q&A QA1788 - Building a Position Independent Executable Non-PIE

Deploying sqlite DB on iPhone app upgrade

佐手、 提交于 2019-12-03 06:01:32
问题 I'm using sqlite as a datasource in an iPhone app. I have two questions regarding application upgrades. 1.) The data is all config/nontransactional. Meaning, it is readonly. When I update/add config data, I'll issue an upgrade for the app. When a user gets an updated iPhone app, does the original get uninstalled? If that is the case, I'm ok because the new db config data will be deployed. If that isn't the case, how do I replace data? 2.) The data is config and transactional. Meaning the user

Should the rfc1034identifier be removed from the CFBundleIdentifier in plist file?

别说谁变了你拦得住时间么 提交于 2019-12-03 05:45:53
问题 In my Xcode project's plist file, I can see the value for the key CFBundleIdentifier is: com.mycompany.${PRODUCT_NAME:rfc1034identifier} Obviously I will have to change com.mycompany to the domain name of my company, but I have no idea whether the rfc1034identifier should be removed so that it becomes: com.mycompany.${PRODUCT_NAME} Google did not help answering my question. Does this rfc1034identifier affect the AppID that I should provide in the iPhone Developer program - Provisioning Portal