mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
* Add support for App Clips Embeds App Clips into the containing app when they are a dependency. * Patch #909 to not fail CI (#917) Co-authored-by: Dan Fleming <dflems@spotify.com>
15 lines
408 B
Swift
15 lines
408 B
Swift
import Framework
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
// Override point for customization after application launch.
|
|
_ = FrameworkStruct()
|
|
return true
|
|
}
|
|
}
|