We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I wanted to know if we can remove the deprecated API.
https://github.com/prebid/prebid-mobile-ios/blob/master/PrebidMobile/PrebidMobileRendering/Utilities/PBMUIApplicationProtocol.h
Is it used for tests ?
https://github.com/prebid/prebid-mobile-ios/blob/master/PrebidMobileTests/RenderingTests/Mocks/MockUIApplication.swift
The reason I ask is because this is causing warnings in multiple projects for us, because it thinks that we're using
UIApplication.openURL(): https://developer.apple.com/documentation/uikit/uiapplication/1622961-openurl
UIApplication.openURL():
Instead of
UIApplication.open() https://developer.apple.com/documentation/uikit/uiapplication/1648685-open
UIApplication.open()
because the automatic Swift bridging is picking up the protocol from PBMUIApplicationProtocol.h and renaming it to UIApplication.open()
PBMUIApplicationProtocol.h
For solution we can do the following :
Any other solution is welcomed as well.
@YuriyVelichkoPI @jsligh
The text was updated successfully, but these errors were encountered:
We can also move it to Swift and make it internal only so it doesn't affect the client apps.
Sorry, something went wrong.
No branches or pull requests
Hi, I wanted to know if we can remove the deprecated API.
https://github.com/prebid/prebid-mobile-ios/blob/master/PrebidMobile/PrebidMobileRendering/Utilities/PBMUIApplicationProtocol.h
Is it used for tests ?
https://github.com/prebid/prebid-mobile-ios/blob/master/PrebidMobileTests/RenderingTests/Mocks/MockUIApplication.swift
The reason I ask is because this is causing warnings in multiple projects for us, because it thinks that we're using
UIApplication.openURL():
https://developer.apple.com/documentation/uikit/uiapplication/1622961-openurl
Instead of
UIApplication.open()
https://developer.apple.com/documentation/uikit/uiapplication/1648685-open
because the automatic Swift bridging is picking up the protocol from
PBMUIApplicationProtocol.h
and renaming it toUIApplication.open()
For solution we can do the following :
Any other solution is welcomed as well.
@YuriyVelichkoPI @jsligh
The text was updated successfully, but these errors were encountered: