app-store

Is it possible to get app id from iOS application programmatically?

梦想与她 提交于 2019-11-29 16:26:19
问题 Is there any way for getting appstore id from running iOS application? (For asking user to rate it and providing link to appstore.) 回答1: Use NSString* appID = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"]; Updating the answer with comment by @zaheer NSBundle.mainBundle().infoDictionary?["CFBundleIdentifier"] as? NSString 回答2: Yes, it is. You can't get appstore app id (called Apple ID in iTunes Connect) offline, but you can request it using iTunes Search Api.

iOS : Resubmit the rejected app after fixing issue

怎甘沉沦 提交于 2019-11-29 16:17:43
问题 My App was rejected by Apple, Now I have fixed the issues and want to upload the updated bundle file, but when I try opening the compressed bundle file using Application loader, I am getting an error "No eligible applications were found" for Applicaton loader. Please suggest solution. Do I need to change anything in the iTunesConnect? Thanks 回答1: You need to login in to iTunes connects and need to do again "Ready to submit binary". Right now your app status should be "Rejected". So you must

App size double on archiving iphone

只谈情不闲聊 提交于 2019-11-29 16:12:00
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. The iOS App store servers will encrypt the executable binary inside your app bundle for customer downloads, thus making the app much less compressible than your

coredata - deliver / setup default data

隐身守侯 提交于 2019-11-29 16:04:21
I use coreData in my iOS App. It's possible, that the user Add, Delete Data into the Database. I have to deliver default data ( some different data-sets ). At the moment, I'm creating the database by first Application launch. I read data from a csv file an create the database with it. The csv is in the Application sandbox; the coreData (managedDocument) is in ApplicationDocument (creation on runtime...). It works perfect for me - but I ask me, will Apple allow that, if I push the App to the AppStore? There is nothing wrong with this approach and it can't be a reason for rejection. There is

App Store: Problem with UIRequiredDeviceCapabilities

我与影子孤独终老i 提交于 2019-11-29 15:51:07
问题 I've uploaded my first App to App Store, but I did NOT put on the UIRequiredDeviceCapabilities that my App requires location-services and wifi. RESULT: the app does not start looking for the coordinates as it should do. (When I've installed the App through XCode in my iPhone 4 it works perfectly). So, I've tryed to upload a new version with this UIRequiredDeviceCapabilities correctly set, and I got following error message after trying to Upload the new version: "The Bundle is invalid. The key

Upgrade live Universal App to iPad only

安稳与你 提交于 2019-11-29 15:35:33
We have a live universal app in the AppStore. Our client changed his mind and doesn't want the app to be universal anymore, he wants it to be iPad only. Since the app was submitted some time ago, there are users who use the iPhone version. What happens if we submit an upgrade that is iPad only? Will the review team reject it? And if it goes live, will the iPhone users receive a notification about the update? If yes in what form? Or will the iPhone users just be unable to reinstall the app? Thank you! here is the answer of your question: https://itunesconnect.apple.com/WebObjects/iTunesConnect

Can't submit app with CorePlot using Xcode4

吃可爱长大的小学妹 提交于 2019-11-29 15:19:30
问题 I created an application in XCode 4 that uses Core Plot. I installed Core plot as an aditional SDK following the instructions from here:http://code.google.com/p/core-plot/wiki/UsingCorePlotInApplications (Install SDK) The instructions for "static Library" haven't been updated yet fro XCode 4. I can run the app in the simulator, install it on my iPhone and everything works just ok. I was even able to send it to beta testers using several services like TestFlight. For this, I had to generate an

In-app Review Link

做~自己de王妃 提交于 2019-11-29 14:52:55
问题 I am trying to link directly from my app to the review page of an app. This works perfectly with some of my App ID's, like this one [375031865]: NSString *reviewURL = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=375031865&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:reviewURL]]; This also works (Same APP ID, different link format): NSString *reviewURL = @"itms

Decrease iOS Application size to App Store

巧了我就是萌 提交于 2019-11-29 14:48:35
问题 I am trying to submit an application in App Store, and I need to decrease its memory a little bit, if this is possible. I tried a method which I am gonna describe below to make my app lighter, but with not luck. Details I followed these steps to see what was causing this large size Make an archive of the project Distribute it Save for Enterprise or Ad-Hoc Deployment Select the .ipa file and changed the extension to .zip Extract it, and open Payload Show the Package Contents Contents I had

iOS In App Purchase - “Invalid Product ID” in release, NOT development version

别等时光非礼了梦想. 提交于 2019-11-29 14:19:47
I created a new app and uploaded the binary to iTunes Connect, then tested IAP using the test user account, both on the simulator and on the device. Both worked. I submitted the final app and it is currently live on the App Store. However, after deleting the development version from my device and downloading my app from the App Store to test IAP, the app immediately receives an "Invalid Product ID:" error. Once again, the development version worked using the test user account, but live on the store it does not work and returns invalid product ID. Any ideas what this might be? If anyone wants