mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
c32aa4cc94
* 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>
23 lines
529 B
Swift
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
|
|
}
|
|
}
|