app-store

Non-public API usage error for my react-native app

早过忘川 提交于 2019-12-11 09:52:55
问题 When i submit my react native app to appstore, it gets denied with the error: The app references non-public selectors in yourApp: channelId, initWithURLStrings:, isBinary, reportId, sdp, sendData:, setChannelId:, stringForType:, typeForString: When i search my project, it looks like react-native-webrtc is using them, which is a npm module. Did anyone faced this problem because of the used modules, and what should i do at this point? 回答1: The first step would be to post an issue on the GitHub

iOS app - Non-Public API usage- app references non-public selectors: cancelButtonClicked, setResult:

情到浓时终转凉″ 提交于 2019-12-11 09:39:32
问题 After I have uploaded app to itunes i get mail saying that my app using non public api methods- cancelButtonClicked , setResult: But cancelButtonClicked is used as IBAction method for various buttons and searchBar. Do I need to rename it? Also, this is very common please suggest.. For setResult: Method I have not used this method any where also, I haven't found this method used in my complete workspace. I have used multiple third party APIs some of them are below: AFNetworking Google Maps SDK

Does the App Store remove architectures from an IPA?

蹲街弑〆低调 提交于 2019-12-11 08:07:50
问题 Since the announcement by Apple that all apps distributed by the App Store require 64-bit support, I've had to build multiple-architecture fat binaries that increase the size of the resulting IPA. Does this size increase directly affect my users, or does the App Store strip out irrelevant architectures from an IPA containing fat binaries when downloading to a device? 回答1: It does not appear that they currently do, since that feature was announced for iOS 9. Slicing is the process of creating

This bundle is invalid. The IPA format requires a top-level directory named Payload, containing only a .app bundle

橙三吉。 提交于 2019-12-11 08:05:07
问题 When uploading game application in to the app store getting below error. ERROR ITMS-90017: "This bundle is invalid. The IPA format requires a top-level directory named Payload, containing only a .app bundle and optional plugins in a Plugins directory." But Successfully validating. Tried by uploading .ipa file using Application loader 3.5 and 3.0 but Same error. info.plist also fine Had valid distribution certificate. 来源: https://stackoverflow.com/questions/42411687/this-bundle-is-invalid-the

In-App-Rating with stars, without opening appStore

二次信任 提交于 2019-12-11 07:57:14
问题 I want people to rate my app with stars inside the app itself, so without a SKStoreProductView (or whatever). So if they tap "rate" then there is an extra view where they can rate my app with 1 to 5 stars. How do i implement that? thanks a lot 回答1: Possible Now after iOS 10.3+ The SKStoreReviewController allows users to rate an app directly from within the app through a dialog box. The only downsite is that you can only request StoreKit to display the dialog, but can't be sure if it will.

The bundle uses a bundle name or display name associated with an Apple app

心已入冬 提交于 2019-12-11 07:48:15
问题 When submitting my app to the app store for upgrade, I got a validation warning stating that my app could not have the same bundle display name as an Apple app. A clever way to get aground this is to add a special character to the end of your bundle display name. For example: Compass can be Compass!, Compass+, Compass. Yahoo! Weather has a neat bullet point dot after their bundle display name. Any one know how to add that character to your bundle display name? 回答1: A clever way to solve this

App from App store doesn't show up for all users under Notification Center (Local Notifications)

陌路散爱 提交于 2019-12-11 07:48:12
问题 Has anyone had any problems with users downloading your app from the app store and the app not showing up in the Notification center (and thus notifications not showing up)? I've tested the app on various devices and haven't been able to recreate the problem that a percentage of my users are having. They email me telling me the app is missing from the Notification center, yet when I download it, it's there. All of my users are using iOS 7 too. For reference, I've implemented local

Are performSelector and respondsToSelector banned by App Store?

一曲冷凌霜 提交于 2019-12-11 07:27:55
问题 My latest build was accepted into the Apple app store, but I got the notice quoted below a couple of days later. My app also uses Rollout.io, and I asked explicitly if this was the problem. No response yet. If respondsToSelector or performSelector are banned, are there any replacements? Dear Developer, Your app, extension, and/or linked framework appears to contain code designed explicitly with the capability to change your app’s behavior or functionality after App Review approval, which is

How to redirect user to the developer iTunes account to see his other apps

亡梦爱人 提交于 2019-12-11 06:54:06
问题 I am trying to implement a "More apps" button that redirects to the other apps that the same developer have posted on iTunes app store, for example to achieve what I am trying to do with the Temple Run developer the next code is just fine: NSString* launchUrl = @"https://itunes.apple.com/ro/artist/imangi-studios-llc/id284899742"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]]; The think is, that in my case the developer has no other app posted on iTunes yet so I

Animating Labels with delay and duration Ios

↘锁芯ラ 提交于 2019-12-11 06:09:14
问题 So i was trying to animate label which will start with a text then after certain time it will fade and new text comes to the screen which will fade after certain time and then new text comes. I want this to happen recursively. I need to continue animating for 15 seconds , the again same thing happens for next 15 seconds. - (void)viewDidLoad { [super viewDidLoad]; [self MyLabelAnimation]; } - (void)MyLabelAnimation { self.myLabel.text = @"Text 1"; [UIView animateWithDuration:0.3 animations:^{