Michael Tamburro

Results 18 comments of Michael Tamburro

Yes! Just lost my access to push changes from work, so it may be a while.

Specific guidance: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-16-release-notes [UIViewController shouldAutorotate] has been deprecated is no longer supported. [UIViewController attemptRotationToDeviceOrientation] has been deprecated and replaced with [UIViewController setNeedsUpdateOfSupportedInterfaceOrientations]. Workaround: Apps relying on shouldAutorotate should reflect their...

Replacing [line 78](https://github.com/apache/cordova-plugin-screen-orientation/blob/master/src/ios/CDVOrientation.m#L78) with something like this might work (untested): ``` if (@available(iOS 16.0, *)) { #if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_15_5 // Xcode 14 and iOS 16, or greater [self.viewController setNeedsUpdateOfSupportedInterfaceOrientations];...

Apologies that I still haven't had time to play with this. For diagnostics: When you're trying to use `setNeedsUpdateOfSupportedInterfaceOrientations` from Xcode 14 RC on iOS 16, does your list of...

I came across this thread today as I am moving away from Cordova CLI, and wanted to better understand the (sounds like once-upon-a-time available) platform-centered workflow as it compares to...

Thanks @breautek . It turned out to be pretty easy to spin up a blank native project (or your existing native-centric one) and integrate Cordova's Platform Centered workflow. If anyone...

Hi @breautek That `__IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_15_5` check allows the code to compile on either Xcode 14, or (the still valid) Xcode 13.4.1. Worth noting, it will not compile on the...

@j3k0 one approach would be to look at the Package.swift file, which is [human readable](https://developer.apple.com/documentation/xcode/creating-a-standalone-swift-package-with-xcode), and then write yourself a similar plugin.xml.

Sorry it took so long to get back to you on this, but good news: nothing to do here. The commits in this PR safely made it to master in...

I saw this issue with schemes, which had the same behavior: https://github.com/apache/cordova-ios/issues/1223#issuecomment-1608211672