Ack single features on iOS only

This commit is contained in:
Davide De Rosa 2021-02-07 15:18:55 +01:00
parent 5c1dd22b96
commit 9d0bddfc3c

View File

@ -178,7 +178,11 @@ public class ProductManager: NSObject {
}
private func isEligible(forFeature feature: Product) -> Bool {
#if os(iOS)
return isFullVersion() || purchasedFeatures.contains(feature)
#else
return isFullVersion()
#endif
}
public func isEligibleForFeedback() -> Bool {