app-store

iPhone App:Test the newer version of app first and after make it available for other users for download

浪尽此生 提交于 2019-12-01 11:33:53
问题 I have an iPhone App which is available on App Store. Now I have made some changes in my existing App which can be tested only when an App is available on App Store. So I want to release newer version but I want to test it first before it it available on App Store for all users And once it is tested and if it works fine as per expectation then only i want to make it available for other user how can I do that? Please help and suggest Thanks. 回答1: The short answer is: NO - there is no way to

iOS 7 users unable to install new version

烂漫一生 提交于 2019-12-01 11:26:18
问题 We have just released a new version (v1.5) of our app on AppStore, this version was built using Xcode 4.6 using base SDK 6.1, supporting iOS 5.0 as minimum version. Now the problem is that iOS 7 users are unable to install the latest version (v1.5), however they can see 1.5 version on AppStore but when they install it they get 1.4 version. Note: We submitted this app using Xcode 5.0 as Xcode 4.6 just got stuck in the middle... 回答1: Apple is currently reviewing apps with iOS 7 devices. So they

App store review guidelines 2.10 - should iPhone app be adjusted to iPad?

拟墨画扇 提交于 2019-12-01 10:53:30
I find paragraph 2.10 of App store review guidelines a bit ambiguous. It says : "iPhone Apps must also run on iPad without modification, at iPhone resolution, and at 2X iPhone 3GS resolution" My app is deployment target is iphone and the supposed device orientation is portait When I tested my app on ipad simulator it looks as follows: This is just a piece of the view to give you the notion of how it actually look like - the app view does not fit the whole frame of ipad simulator. The reason why I got my app rejected is completely different, however I don't want to waste another 8 days to see

How to enumerate the installed StoreApps and their ID in Windows 8 and 10

被刻印的时光 ゝ 提交于 2019-12-01 10:42:59
What I want to get is the AppUserModelId of all installed StoreApp applications, so that I can pass it to IApplicationActivationManager->ActivateApplication . In Windows 8 it was stored in the Registry, but in Windows 10 it is not anymore. There are a lot of questions about this in internet but even after days of searching I could not find a satisfying solution. What I have so far is the following: I create an instance of IPackageManager , I call FindPackagesByUserSecurityId() with the SID of the current user, I iterate through the returned collection I get an IPackage interface From that I

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

北城余情 提交于 2019-12-01 10:39:44
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 of the http protocol instead of itms-apps . I'd rather going straight to the App Store like the rate

iPhone app localization by releasing separate apps for different markets

∥☆過路亽.° 提交于 2019-12-01 09:14:05
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 similar names), with each one of them only available in one country. My main arguments are,: 1) Since App

iPhone: different icon for homescreen and App Store

◇◆丶佛笑我妖孽 提交于 2019-12-01 09:12:45
I would like to know if the app icon on the iPhone can be slightly different than the one shown in a large version in Apple's App Store. It was discussed in short here: Tips for a successful AppStore submission? But I wanted to make sure if anyone has more experience with that. To give an example: The New York Times has many words incorporated in its app icon (see http://itunes.apple.com/de/app/nytimes/id284862083?mt=8 ). Would it be okay to have a full black colored background without the words in the small/homescreen version of the icon? I had one application (RefFinder) rejected just

iTunes API: get 100x100 px icon of an App

╄→尐↘猪︶ㄣ 提交于 2019-12-01 08:53:38
I'm using iTunes API to get some informations about apps in App Store. Reading the documentation I saw that "artworkUrl100" parameter, taken from JSON request, will get me a 100x100 icon of the app. I notice that this not works always, and sometimes it contains the url of a biggest icon. Is there a way to get with certainty this icon (100x100 px)? You can do that like this. Let say this is your link: http://a223.phobos.apple.com/us/r1000/049/Purple/e0/ed/59/mzi.qaoavtgs.png (from "artworkUrl512"). You just have to add .100x100-75 before .png like this http://a223.phobos.apple.com/us/r1000/049

iOS verify app store purchase id by developer

ε祈祈猫儿з 提交于 2019-12-01 08:31:22
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 which was sent to me by app store? Thanks. Read Verifying Store Receipts in the In-App Purchase Programming

How to enumerate the installed StoreApps and their ID in Windows 8 and 10

╄→гoц情女王★ 提交于 2019-12-01 08:22:33
问题 What I want to get is the AppUserModelId of all installed StoreApp applications, so that I can pass it to IApplicationActivationManager->ActivateApplication . In Windows 8 it was stored in the Registry, but in Windows 10 it is not anymore. There are a lot of questions about this in internet but even after days of searching I could not find a satisfying solution. What I have so far is the following: I create an instance of IPackageManager , I call FindPackagesByUserSecurityId() with the SID of