WormHoly does not compile properly under Xcode 13.0 beta 3; specifically, the call to UIApplication.shared in WHBaseViewController.swift is causing the issue.
<PACKAGE>/Wormholy/Sources/Subclasses/WHBaseViewController.swift:44:91: 'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead.
This can be bypassed by placing an @available in front of this function definition:
WormHoly does not compile properly under Xcode 13.0 beta 3; specifically, the call to
UIApplication.shared
in WHBaseViewController.swift is causing the issue.This can be bypassed by placing an
@available
in front of this function definition:There are other methods inside
WormHoly.swift
that would need similar bypassing.I'm not certain if this would cause other issues; I'm happy to submit a PR if desired.