app-store

Upgrade My free app form Universal to iPhone only

醉酒当歌 提交于 2019-12-02 20:49:24
问题 I release my free app to appStore and it's version 1.0 , it is an Universal app . Now I want to release version 1.1 to appStore , and I upgrade it to iPhone only . Does appStore will reject me ? I have read the similar problem , but it is 2011 , I want to know in 2014 , it will be also reject? 回答1: You can't upgrade your app from universal to iphone/ipad only. During Validation time you will get a error. Also you can see this document: https://developer.apple.com/library/ios/qa/qa1623/_index

InApp Purchase rejected in App Store

对着背影说爱祢 提交于 2019-12-02 19:46:58
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 purpose. I have no idea how to make the inAppPurchase except the tutorials Google give me, any

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

北战南征 提交于 2019-12-02 19:04:41
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? The :rfc1034identifier just formats it (if needed) so there are no illegal characters* in the bundle

How to send the user directly to the review page on The App Store?

会有一股神秘感。 提交于 2019-12-02 18:51:17
Up to now (with iOS < 6.0), I used the following URL and code to send the user directly to the review page of my app (to rate it with 5 stars and post a friendly comment :)): NSString *stringUrl = @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=XXXXXXXX&pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8"; NSURL *url = [NSURL URLWithString:stringUrl]; [[UIApplication sharedApplication] openURL:url]; This code doesn't work anymore when I run my app on a device with iOS 6 (and the new appstore of iOS 6). The appstore opens but then I have got an alert saying

Can't upload archive to app store since yesterday

吃可爱长大的小学妹 提交于 2019-12-02 18:42:46
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 changed the minimum age in the application from 17 to 18 (so I didn't change everything important in the

Deploying sqlite DB on iPhone app upgrade

ぐ巨炮叔叔 提交于 2019-12-02 18:35:13
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 can save data into the db. When the user upgrades to a new version of the app, I want to maintain

Possible to show a “in App Store modal” in iOS 6?

本秂侑毒 提交于 2019-12-02 18:33:24
Is it possible to show a modal view controller in iOS 6 that present my app in App Store? Yes you can. (iOS6+) Take a look at SKStoreProductViewController NSDictionary *appParameters = [NSDictionary dictionaryWithObject:@"533886215" forKey:SKStoreProductParameterITunesItemIdentifier]; SKStoreProductViewController *productViewController = [[SKStoreProductViewController alloc] init]; [productViewController setDelegate:self]; [productViewController loadProductWithParameters:appParameters completionBlock:^(BOOL result, NSError *error) { }]; [self presentViewController:productViewController

How to check an app violates Google's the impersonation policy or not

佐手、 提交于 2019-12-02 18:11:01
My app is removed from Google Play store and got the reason as: After review, "My App", has been suspended and removed from Google Play as a policy strike because it violates the impersonation policy. Is there any other way to check whether the app is obeying all Google's policies (like impersonation) before release. So that the app can be saved from suspension. And more than 3 suspension may cause account termination. So please tell me how can I check the app before release? I think no one had faced such problem?? For me, I totally agree with the author of this post . Really Nice suggestions.

Custom image assets for use in the App Store

倾然丶 夕夏残阳落幕 提交于 2019-12-02 17:54:20
问题 In the iOS App Store, some apps are presented in a custom and non standard way. Instead of a standard app icon and standard black text describing the app, some apps in the App Store feature a custom background color scheme and custom banner at the top of the screen. In the below example, an image is used in the banner, along with a dark red background and white buttons and text. Question: How can customization be achieved in Xcode and Swift code for images that will appear in the App Store?