Skip to content

Instantly share code, notes, and snippets.

View wojtek717's full-sized avatar
👋
Hello there

Wojciech Konury wojtek717

👋
Hello there
View GitHub Profile
@wojtek717
wojtek717 / README.md
Created April 27, 2022 12:51 — forked from shakaib-arif/README.md
Azure Pipeline: iOS Application with App Extension

Pipeline: iOS Application with App Extension

Unfortunately there is not a straight forward way for the iOS application with App extension in Azure. But to make it work you'll have to do a couple of changes in the project that I'll share later.

Azure Pipeline: Xcode task

As per my recent experience to create the pipeline for such sort of application, the given xcode task from Azure is not capable to handle this case.

And I have later confirmed this from the PG team by reaching out to Azure DevOps support.

import UIKit
@objc public protocol KeyboardWorkerDelegate: AnyObject {
@objc optional func keyboardWillShow(with keyboardBounds: CGRect)
@objc optional func keyboardWillHide(with keyboardBounds: CGRect)
@objc optional func keyboardDidChange(with keyboardBounds: CGRect)
}
public final class KeyboardWorker {
private enum Constants {