Fixes [CF-682], and probably #1528.
Looks like possibly something was broken demangling lazy
properties with @available
in iOS 15.0 (per the 2 bug reports).
This changes the approach to simply having Any?
as the value, and making the exposed @available
property a derived one.
PurchasesOrchestrator
: removedlazy
hack for properties with@available
Fixes [CF-682], and probably #1528. Looks like possibly something was broken demangling
lazy
properties with@available
in iOS 15.0 (per the 2 bug reports).This changes the approach to simply having
Any?
as the value, and making the exposed@available
property a derived one.