You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ITMS-90338: Non-public API usage - The app references non-public symbols in Frameworks/LiquidCore.framework/LiquidCore: _getcontext, _makecontext, _setcontext. 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 so, they must be removed. For further information, visit the Technical Support Information at
The text was updated successfully, but these errors were encountered:
Update: as a workaround until this PR get's approved, adding this to your pod file appears to work. It's the same fix as the PR just post install.
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "LiquidCore"
print "Found LiquidCore Target. Updating CFLAGS...\n"
target.build_configurations.each do |config|
cflags = config.build_settings['OTHER_CFLAGS'] || ['$(inherited)']
cflags << '-DOPENSSL_NO_ASYNC'
config.build_settings['OTHER_CFLAGS'] = cflags
end
end
end
end
ITMS-90338: Non-public API usage - The app references non-public symbols in Frameworks/LiquidCore.framework/LiquidCore: _getcontext, _makecontext, _setcontext. 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 so, they must be removed. For further information, visit the Technical Support Information at
The text was updated successfully, but these errors were encountered: