app-store

How can simulate the IPhone app upgrade process in the SDK simulator

…衆ロ難τιáo~ 提交于 2019-11-28 06:29:52
I'm working on an iPhone app and about to release version 2. We'll be changing the core data model and I'd like to simulate the upgrade process in the simulator before releasing it to users and potentially causing data loss for them. There doesn't seem to be any real good doucumentation on how to do this in a sandbox before releasing it. The process I've used in the past has been to wipe any working version from the Simulator, check out the previous version of my application from my repository, compile and install that, work with it for a bit, then compile and install the new version of the

Invalid Binary File after uploading on ITunesConnect

霸气de小男生 提交于 2019-11-28 06:14:31
问题 I have built an iPhone application and was uploading the 4th version when the Invalid Binary status showed up on ITunes Connect. The 1st 3 versions uploaded smoothly. I recieved a mail from Apple with the following error Invalid File Name - Your package contains a file 'appname.app/Icon ' with a name that contains invalid characters. Avoid using control characters in the file names. I am unable to zero down on the trouble making file. Any leads on how I could debug this? Have been stuck on it

Is there any limitation to distribution of apps in iOS enterprise program?

大城市里の小女人 提交于 2019-11-28 05:57:21
I know in iOS developer program, a developer can use an ad hoc distribution profile to build an app, and this app is for testing purpose and can be installed on up to 100 devices. Is there such a limitation for app developed with a Enterprise program account? And since this app is for internal use, does the employee's device need to be configured somehow to use this in-house app? And is there any technical problem if I distribute the in-house app (for free) to a larger audience via a web link or email? I know this can be interpreted as violation to the Enterprise program, I am just wondering

Unable to log in with sandbox test users on device

安稳与你 提交于 2019-11-28 05:40:41
Trying to do some In App Purchase testing, so I created a sandbox tester on itunesconnect... but when I attempt to log in as that user on my device I get an error: Itunes Account creation not allowed The Apple ID cannot be used with the iTunes store at this time. Please try again later. If I put in the wrong password for the account I get an account rejection so its not a password typo.. this is happening for every test account I create... anyone have a clue what the hell is going on.. I cannot find any information on this anywhere. Speckpgh Yes, the answer is I AM AN IDIOT... pure and simple.

Combine two iOS apps into one

廉价感情. 提交于 2019-11-28 05:36:02
问题 I have a situation where two separate companies wish to 'join' their iOS apps together to form a single app (so that only one App store download is required). The apps have entirely separate code-bases. The companies are looking to partner together but they don't really want one another seeing each others code. A degree of fiddling with the code would be acceptable. Is there any way to 'package' the code-bases or binaries so that app 1 could be incorporated into app2 without the app2

Apps are not permitted to access the UDID and must not use the uniqueIdentifier method of UIDevice

寵の児 提交于 2019-11-28 05:05:34
Will you please help me to fix this below mentioned issue getting from Apps store Apps are not permitted to access the UDID and must not use the uniqueIdentifier method of UIDevice. Please update your apps and servers to associate users with the Vendor or Advertising identifiers introduced in iOS 6. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If

How to implement a “rate us” feature in a phonegap app

雨燕双飞 提交于 2019-11-28 04:45:30
I wish to add some sort of a "Write a Review" or "Rate Us" feature to my app so my customers can easily rate and review my app. The problem is that the app is implemented using phone gap. Is it possible to implement this feature using html5-phone gap? Thanks! will Farrell I use navigator.notification.confirm and have it called when the user reaches a certain point or uses your app so much. Of course you need to add your own links in. Note this snippet references other parts of my app so customize to meet your needs. if (settings.core.rate_app_counter === 10) { navigator.notification.confirm(

How we know if our app uninstalled from iphone? [closed]

大憨熊 提交于 2019-11-28 04:17:35
问题 I want to know the date if suppose our app uninstalled from iphone? 回答1: As others have already answered - you can't. However, if you have push notifications enabled in your app, you can get a very rough idea by using APN feedback service to see which apn tokens have been removed (assumed uninstall). There is more info in this SO post: "Push notification" - feedback, uninstall application Again, this should only be used to give a very ~rough idea on your uninstalls since the user may opt out

How to get iOS appStoreReceiptURL into Base 64 Encoded String?

柔情痞子 提交于 2019-11-28 04:12:18
I want to use appStoreReceiptURL to see which version of the app someone purchased. How can I get this into a string? I'm testing this by downloading the app from the store, then running a new version of the app from Xcode. Here is what I've tried: NSURL *receiptUrl = [[NSBundle mainBundle] appStoreReceiptURL]; NSLog(@"receiptUrl %@",[receiptUrl path]); if ([[NSFileManager defaultManager] fileExistsAtPath:[receiptUrl path]]) { NSLog(@"exists"); NSError *error; NSString *receiptString = [[NSString alloc] initWithContentsOfFile:[receiptUrl path] encoding:NSUTF8StringEncoding error:&error]; if

iOS App deployment without AppStore

偶尔善良 提交于 2019-11-28 03:51:26
I'm developping an App in my company. We want to distribute this App to our customers but without using the AppStore from Apple, is it possible? I heard about MDM (mobile device manager) but I'm not really sure if it will cover this need? I heard also about Enterprise developer license for in house deployment but if I'm understanding correctly it means the App can be deployed only inside my company and not to our customers, is it correct? Thanks for your clarifications. Seb If you are trying to get apps to customers without the App Store, you have options, but none of them are awesome. There