app-store

Removing 3G from supported devices

我只是一个虾纸丫 提交于 2019-12-01 08:16:05
问题 I'm trying to figure out how to remove the iPhone 3G as a supported device for my application in the AppStore. I emailed Apple support asking for them to update it in the reqs section and they responded saying I need to update my UIRequiredDeviceCapabilities keys. Well, it was submitted with : <key>UIBackgroundModes</key> <array> <string>location</string> </array> and <key>UIRequiredDeviceCapabilities</key> <array> <string>telephony</string> <string>location-services</string> <string>gps<

Can I Have 2 or more developer names displayed on iOS AppStore?

◇◆丶佛笑我妖孽 提交于 2019-12-01 08:13:35
If there are 2 or more developers who have developed the App for AppStore, How can they have both of their names displayed below the app together? Also, do they all need to have a developer account or one is enough? You need a single paid developer agreement. Only the legal name of the entity (person or company) that entered into the developer distribution agreement with Apple will be shown on the App Store. You can have whatever credits you want inside the app You can also used the description on the App Store page to add a second name. So if you’re developer account is in the name of a

uploading app to app store - mach-o header code 0x72613c21

时光毁灭记忆、已成空白 提交于 2019-12-01 08:12:14
问题 I'm trying to publish my app to the app store. I have all the certificates etc. needed. When I try to archive and then validate the project, I get this error message: This is the code that was returned to me: A file called "IDEDistribution.critical.log" 2017-01-22 00:01:17 +0000 [MT] Failed to generate distribution items with error: Error Domain=DVTMachOErrorDomain Code=0 "Found an unexpected Mach-O header code: 0x72613c21" UserInfo={NSLocalizedDescription=Found an unexpected Mach-O header

Using a different company name for iPhone app distribution?

最后都变了- 提交于 2019-12-01 08:03:21
My company is starting to get into iPhone development. We'd like to keep our iPhone business segregated from our other businesses, so in the App Store, we'd like to be known by a different name. For example, although our company may be legally Company, LLC, we'd like our apps on the App Store to appear to be from a different company name, e.g. ReallyCoolApps, LLC, which will simply be a dba for Company, LLC. I'm in the middle of the developer program enrollment, and it's asking me for my company name, website, etc. At this point, do I need to enter the name we'd like to appear as in the App

If I access the iPhone serial number inside an app, is it allowed in the App Store?

蹲街弑〆低调 提交于 2019-12-01 07:47:03
问题 I have read about the IOKit-Extension to get the serial number from an iPhone inside an app: blog.jdevelop.eu Actually i know one App in the Appstore which reads out the serial number and displays it, what now, is it allowed or not? Any experience? 回答1: From the developers site: Be aware that you cannot submit an App with this IOKit-Extension into the Appstore! 回答2: I do not think it is allowed, since Apple changed terms and conditions to prevent ad networks from using the UUID of the phone

iOS verify app store purchase id by developer

匆匆过客 提交于 2019-12-01 07:45:40
问题 How can I check purchase id which was sent by user to me from his orders list? For example, he can send something like: M1VYXX7VX7 (as written in his purchases list in appstore) and ask to return his purchase (may be he had deleted his app accidentally), But when I get order information inside of my code (through SKPaymentTransaction ) I have no access to that identifier. Then only ID i have looks like: 1000000020706713. So is there any ways to validate that purchase ID using information

Is it possible to distribute an iPhone Web Application through the App Store?

眉间皱痕 提交于 2019-12-01 07:37:17
By Web Application I mean a web site targeted at Safari on the iPhone that can run "off-line" (by using a cache manifest file, JavaScript database, running full screen from an icon on the home screen.) The user experience as a Web Application is fine once it's installed, so there is no need for it to be native, and potentially, an app delivered in this way could run on other platforms (mobile and PC browsers.) I'm aware that there are many hardware/API features that can't be accessed in this manner, but that is not a problem. The App Store provides the possibility of selling the app as well as

Link to list all apps by a developer in iPhone's App Store

旧城冷巷雨未停 提交于 2019-12-01 07:28:30
问题 I'm adding links in my game so players can rate and see more games of the same developer. For rating I'm using itms-apps://itunes.apple.com/app/idMY_GAME_ID_IN_NUMBERS and it works properly, opening the App Store straight away. However, I can't find a link that opens the App Store app in my iPhone and shows a list of all games by the same developer. I've tried this http://appstore.com/STUDIO_NAME and it works, but it opens first the device web browser and then the App Store, I guess because

iPhone app localization by releasing separate apps for different markets

和自甴很熟 提交于 2019-12-01 07:13:58
问题 I have an app on the Swedish App Store which I intend to adapt to some other markets. In this case, the most important part of the localization is to change some aspects of how the app works for different markets (countries), so this is not primarily about language adaptations. Probably, I will not use the normal built-in mechanisms for localization. Instead I consider to build separate versions for different markets and release them as separate apps on App Store (with the same icon and

Can't release iMessage extension in AppStore because of missing Messages framework

蹲街弑〆低调 提交于 2019-12-01 06:56:13
问题 I implemented iMessage extension in my ios project, but after submiting and reviewing my build i see following in iTunnes connect: "Your binary doesn’t implement the Messages framework. The screenshots won’t be shown on the App Store for iMessage." I tried to add it in main target but still problem is there I'm quite confused what i should do, as i have it worked in simulator and test device. May i need to change something in my build schema or settings? Thanks in advance for any advices. 回答1