I have an ios application created with ionic framework. But in my last submission app store has rejected my app and said,
Your app uses or references the following non-public APIs:
com.apple.springboard.lockcomplete
I was trying to find anything like in the above by searching through the project using xcode and visual studio code.
Can anyone give a suggestion to find the above command in the project/plugins? Any other way to solve this issue?
Related
I've been developing an iOS apps that implements some C++ libraries which are later converted into .dylibs in order for iOS devices to be able to run the app. I can run the app in any iOS device without any problem. I also can archive a development .ipa and test the app in other's people devices.
The problem that I'm having is when I submit the app into app store connect in order to test it using TestFlight and be able to distribute it into the app store. I'm getting the following errors when submitting it:
TMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.
TMS-90424: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.
I have tried some solutions, including the ones suggested in here: https://developer.apple.com/library/archive/technotes/tn2435/_index.html#//apple_ref/doc/uid/DTS40017543-CH1-TROUBLESHOOTING-BUNDLE_ERRORS
I'm not sure if I'm correctly implementing the libraries into the project. I did what the link said, which is embedding the libraries into frameworks, but that didn't solve the error. I would like to know if there is any tips or solutions to what I'm doing to see if I'm doing it right or if I can take another path to solve the problem.
Make sure you build and export using an official release of Xcode, and not any Beta version.
Have you tried contacting Apple support for some insight into the problem you're having?
Currently I'm using Ionic Framework and trying to build an iOS mobile App. In order do that I did the following steps:
To add the platform,
$ ionic cordova platform add android
2.To build the app
ionic cordova build ios -- --buildFlag="-UseModernBuildSystem=0"
After it successfully generated .xcodeproject file, I imported the file into Xcode.
After importing the project, cleaned the project folder in xcode itself.
Then I added the Apple ID account to my Xcode.
After adding the account I'm trying to archive the project, in order to do that I checked the following URL's
Official Documentation to generate the IOS app
Stackoverflow answer to .ipa file.
In the Archiving process I'm getting the following error:
error: Your development team, does not support the Push Notifications capability. (in target 'folder')
I tried to rectify it in the following way:
DISABLE_PUSH_NOTIFICATIONS=1
in the preprocessor macros. Unfortunately it didn't solve my problem.
I don't have any Apple developer ID
How to solve this problem, in order to archive the project? Could any one help me in this regard?
I tried all the solutions which are available solutions but they didn't solve any answer. I am stuck since the past 2 days.
Are you using any plugins that require push notifications?
See ios push notification development on free apple account.
It is not possible to use push notifications without a paid Apple Developer ID.
If not,
Try removing and adding the ios platform again.
Im trying to integrate Branch.io to our app with latest iOS 10.2 Beta. Im using the latest Titanium Studio 6.0 and Ti SDK 5.5.1.
I've followed the guide provided in: https://github.com/BranchMetrics/titanium-branch-deep-linking
Which means that I have activated Associated domains for my app in the + Apple Developer-central, and also added the correct test-key for branch.io in my tiapp.xml-file.
Together with this, Ive also added the entitlements-file with the correct domain (for com.apple.developer.associated-domains).
NSUserActivityTypes in tiapp.xml
And ofcourse the latest Branch.io module v1.4.
Then, I tried to build everything as adhoc, no issues here either.
BUT; I can't open the app through a messenger-link. Only App Store gets opened all the time.
Is there anything here that I might have missed?
I reticently delivered an app to the iOS App store on 1/24/2014. It's an iO7/iPhone only app and everything was delivered correctly. As of yesterday my app was approved and it is currently visible in the App Store.
I put together a small update and am currently working on getting it delivered using Application Loader.
However, now when I upload my production IPA it gets rejected due to what seems like a sdk error.
Messages:
Apple's web service operation was not successful
Unable to authenticate the package: 806906410.itmsp
ERROR ITMS-9000: "This bundle is invalid. Apple is not currently accepting applications built with this version of the SDK." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
I'm struggling to figure out what has changed since I am building with the same SDK as I did last weekend.
From the February 1st you can use only XCode 5.X and iOS7 SDK to create apps for the AppStore. Double check that you compiled your app with the correct XCode/SDK.
Information about this: https://developer.apple.com/news/?id=12172013a
I was hoping your suggestion works but I got the error despite using Air 4.0 SDK. I didn't get this error when I uploaded it to the App Store a few days ago (I was already using Air 4.0 then). Does it really mean that Apple has limited development to using Xcode?
EDIT:
Updating to Air 4.0 SDK does work! But make sure what you have is Air 4.0 SDK for Flex Developers
For Flex users with the same error message: you have to download the AIR 4.0 SDK beta from Adobe Lab:
http://labs.adobe.com/downloads/air.html
(for me, it was SDK for Flex, Mac)
Then extract it (sudo tar jxvf air4-0_sdk_sa_mac.tbz2) and overlay it with the Flex SDK as explain in:
http://www.247sw.ca/installing-flash-builder-4-7-and-air-3-5-for-windows-and-mac
Publishing to the AppStore is OK after that.
I was facing the same issue, i updated the Air 4.0 SDK, and it works fine! Make sure to update Air 4.0 SDK for Flex Developers. Please set xmlns="http://ns.adobe.com/air/application/14.0" inside --app.xml configuration file.
You can download the latest sdk from http://labs.adobe.com/downloads/air.html.
I ran into the same issue, however in my case, the reason was because I had the latest Xcode beta for iOS 8 on my computer. Event I built from Xcode 5.1.1 GUI, the beta compiler was picked. Had to move beta to trash first to make a build for the store.
it works fine in iPhone Simulator and iPhone device, with correct code sign, when archive app, submit it to app store in Organizer, it raised the error:
Your app contains non-public API usage. Please review the errors,
correct them, and resubmit your application.
The app reverence non-public symbols in
Payload/XXX.app.www/lib/command/vendor/nodejs/osx/node:NSGetEnviron,_bzero,
fdatasync
is PhoneGap use non-public API?
That doesn't look Phonegap related, it looks like it's ST2 related, and more specifically related to the ST2 command as part of the SDK package. You probably don't want to be submitting those files. Use the ST2 command to build a production package, and only import the production files into the Phonegap Xcode project. Read the command page for more information on building your application for production.