Files
XcodeGen/Tests/Fixtures/TestProject/App_iOS/AppDelegate.swift
T
Yonas Kolb c32aa4cc94 Synced folders (#1541)
* update xcodeproj to 8.27.7

* add syncedFolder source type

* drop xcode 15 support

* Rely on fileReference instead of adding new synchronizedRootGroup (#1557)

* fix: don't include untracked children in cache

---------

Co-authored-by: Kirill Yakimovich <kirill.yakimovich@gmail.com>
2025-07-17 15:15:43 +10:00

23 lines
529 B
Swift

import Framework
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// file from a framework
_ = FrameworkStruct()
// Standalone files added to project by path-to-file.
_ = standaloneHello()
// file in a synced folder
_ = SyncedStruct()
return true
}
}