Discussion Forums  >  App Store Rejections

Replies: 13    Views: 617

Higgey
buzztouch Evangelist
Profile
Posts: 392
Reg: Sep 07, 2011
West Midlands
13,520
12/19/14 02:00 PM (9 years ago)

Apple Rejection app will not run on 8.1.1

----- 2.2 ----- We found that your app failed to launch on iPad Air running iOS 8.1.1 and iPhone 5s running iOS 8.1.1, on both Wi-Fi and cellular networks. --------------------------- My app was rejected for the above reason. The app ran on my iPad 2. I'd be grateful for advice about how I start to resolve this issue, please. -- John.
 
AlanMac
Aspiring developer
Profile
Posts: 2612
Reg: Mar 05, 2012
Esher, UK
37,120
like
12/19/14 02:30 PM (9 years ago)
Not seen this myself. I take it you checked the app with 8.1.1 on the xcode simulators John?
 
Higgey
buzztouch Evangelist
Profile
Posts: 392
Reg: Sep 07, 2011
West Midlands
13,520
like
12/19/14 03:15 PM (9 years ago)
Thanks, Alan. I am embarrassed to say that I didn't. Will go away and do so.....
 
AlanMac
Aspiring developer
Profile
Posts: 2612
Reg: Mar 05, 2012
Esher, UK
37,120
like
12/21/14 06:43 AM (9 years ago)
Hi John, I upgraded my iPhone to 8.1.1 and now 8.1.2 and my old apps seem to be OK. It may be that one of the plugins in your app may have to be upgraded?
 
Higgey
buzztouch Evangelist
Profile
Posts: 392
Reg: Sep 07, 2011
West Midlands
13,520
like
12/21/14 01:00 PM (9 years ago)
Thank you, Alan. I see what you mean. Of course, I can check that easily and see if the app runs OK. It'll be a while before I can look at it as I'm now looking after the kids over the festive period, but I'll do as you suggest asap. I really appreciate your assistance, Alan. -- John.
 
mysps
Code is Art
Profile
Posts: 2082
Reg: May 14, 2011
Palma
33,320
like
12/21/14 01:56 PM (9 years ago)
I am having the same issue. However, either I'm blind or I can't see the 8.1.1 simulator in my xcode version 6.1.1 .. Can someone explain kindly where to find it? I don't see it in the simulator downloads either .
 
mysps
Code is Art
Profile
Posts: 2082
Reg: May 14, 2011
Palma
33,320
like
12/21/14 02:02 PM (9 years ago)
Well testing on the 8.1 my problem is with the RD_RSS plugin.. When clicking the action sheet it crashes. I'll post if I can resolve the issue..
 
Higgey
buzztouch Evangelist
Profile
Posts: 392
Reg: Sep 07, 2011
West Midlands
13,520
like
12/21/14 03:24 PM (9 years ago)
Thanks, mysps. Please keep us posted.
 
Red Dog
buzztouch Evangelist
Profile
Posts: 805
Reg: Jun 16, 2011
Southern Califo...
18,800
like
12/21/14 04:09 PM (9 years ago)
@mysps Let us know what you find. I am running 8.1.2 on my iPhone 5 and having no trouble with the rss plugin.
 
mysps
Code is Art
Profile
Posts: 2082
Reg: May 14, 2011
Palma
33,320
like
12/21/14 04:18 PM (9 years ago)
yes its the action button on ipad and iphone 5s using 8.1 click a few of the actions anf it will crash in ny case and apples rejection crash log showed the same. somewhere in the custom url files of your plugin.
 
Red Dog
buzztouch Evangelist
Profile
Posts: 805
Reg: Jun 16, 2011
Southern Califo...
18,800
like
12/28/14 07:12 PM (9 years ago)
Hey guys. Give this a try in the RD_customURL.m file. Around line 203, replace the following: ////////////// share code 1/2 ///////////////// - (void)didTapAction { //if (NSClassFromString(@"UIActivityViewController")) { NSURL *urlStringToShare = webView.request.URL; NSArray *dataToShare = @[urlStringToShare]; UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil]; [self presentViewController:activityVC animated:YES completion:nil]; } //////////////////// share code /////////////////// with this: ////////////// share code 1/2 ///////////////// - (void)didTapAction { #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) //if (NSClassFromString(@"UIActivityViewController")) { NSURL *urlStringToShare = webView.request.URL; NSArray *dataToShare = @[urlStringToShare]; UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil]; if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")){ activityVC.popoverPresentationController.sourceView = webView; } [self presentViewController:activityVC animated:YES completion:nil]; } //////////////////// share code /////////////////// Let me know if this helps and I will update the plugin in the market. Thank you.
 
mysps
Code is Art
Profile
Posts: 2082
Reg: May 14, 2011
Palma
33,320
like
12/29/14 05:17 AM (9 years ago)
Thanks! Will do and report back
 
mysps
Code is Art
Profile
Posts: 2082
Reg: May 14, 2011
Palma
33,320
like
01/02/15 03:54 AM (9 years ago)
Hi, It doesn't crash anymore! Thanks a lot
 
Red Dog
buzztouch Evangelist
Profile
Posts: 805
Reg: Jun 16, 2011
Southern Califo...
18,800
like
01/02/15 08:23 AM (9 years ago)
Cool. Thanks for bringing this to my attention and for testing my fix. I will update the plugin in the market later today. Barry
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.