What the heck do they mean by "private api"?
-
https://9to5mac.com/2019/11/04/electron-app-rejections/
I just heard about Apple rejecting things from a store for using a private API in their code. First what do they mean by "private api"? Second, why would anyone care if there is a private api?
-
@JonB Okay, that makes sense. Don't use Apple's private API. Not private APIs in general.
@LeLev There are things that we can only do in QtQuick based apps by using private APIs of Qt. It sucks, I hate it, but we cannot find another way. We do this for file dialogs. I had a post on it a while back and the result was just use the private API.
-
Turns out, there are some modules that use private apple apis
For example QWebEngine
So becarefull and always Check the Documentation😉 -
@J-Hilk said in What the heck do they mean by "private api"?:
Turns out, there Art some modules that use private apple apis
For example QWebEngineAnd that status can change for other modules if Apple decides to make some things private as well. Apparently some things were in the public APIs and then put into private APIs for some specific reasons.