Dimitri Dupuis-Latour
Dimitri Dupuis-Latour
### Description When previewing an InApp Campaign on Device as draft, appData is nil. Only when the campaign is publish, does appData become available. This was unexpected; we're using appData...
An App using LambdaKit will fail iTunesConnect validation, stating: > This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with...
Add new `legacy_uigraphics_functions` rule to encourage the use of modern UIGraphicsImageRenderer instead of legacy UIGraphics{Begin|End}ImageContext. The modern replacement is safer, cleaner, Retina-aware and more performant. The legacy API is deprecated...
We could have a `legacy_uigraphics_functions`, which can already be defined as a custom rule: ``` custom_rules: legacy_uigraphics_functions: included: ".*\\.swift" name: "Legacy UIGraphics functions" regex: "(UIGraphicsBeginImageContextWithOptions|UIGraphicsBeginImageContext|UIGraphicsGetImageFromCurrentImageContext|UIGraphicsEndImageContext)\\s*\\(" message: "This UIGraphics method is...