Post

Replies

Boosts

Views

Activity

Reply to "Could not display guide" message
I decided to have a crack at copying off the Get Started with Apps example and changed my targets section of the app package to look like this:     targets: [         .executableTarget(name: "App", dependencies: ["Guide"], path: "App"),         .target(             name: "Guide",             path: "Guide",             resources: [             .process("Guide.tutorial"),             .process("Resources/title.png"),             .process("Resources/titleBackground.png")             ])     ] With both Xcode 13 and the 14 beta I get the following message now, for my project: public headers ("include") directory path for 'Guide' is invalid or not contained in the target There is a Guide folder and a Resources folder with those two pngs in it, so I don't think it's an issue with missing files... Any ideas at all would be appreciated.
Jun ’22
Reply to Making a .swiftpm app iPad only?
With a .swiftpm-based project there is no Deployment Info option in the General tab. In the end, I edited the Package.swift file to add a entry like this: supportedDeviceFamilies: [ .pad ], But thanks for the help.
Replies
Boosts
Views
Activity
Aug ’23
Reply to "Could not display guide" message
I decided to have a crack at copying off the Get Started with Apps example and changed my targets section of the app package to look like this:     targets: [         .executableTarget(name: "App", dependencies: ["Guide"], path: "App"),         .target(             name: "Guide",             path: "Guide",             resources: [             .process("Guide.tutorial"),             .process("Resources/title.png"),             .process("Resources/titleBackground.png")             ])     ] With both Xcode 13 and the 14 beta I get the following message now, for my project: public headers ("include") directory path for 'Guide' is invalid or not contained in the target There is a Guide folder and a Resources folder with those two pngs in it, so I don't think it's an issue with missing files... Any ideas at all would be appreciated.
Replies
Boosts
Views
Activity
Jun ’22