Creating tabletop games - Build Failure

The sample code project Tabletopkit Sample found at the article Creating tabletop games here fails to compile with the following errors in Xcode 16 beta 6.

error: [xrsimulator] Component Compatibility: Billboard not available for 'xros 1.0', please update 'platforms' array in Package.swift
error: [xrsimulator] Exception thrown during compile: compileFailedBecause(reason: "compatibility faults")
error: Tool exited with code 1

Answered by DTS Engineer in 801169022

Please file a bug report for this issue using Feedback Assistant.

Best regards,

Greg

Please file a bug report for this issue using Feedback Assistant.

Best regards,

Greg

I cannot input the FB ID, neither as a comment of your reply which I get the message "This thread has been deleted", neither as a reply to my post whereby the page refreshes and the reply simply disappears as if nothing ever happened. Why can't I reply with the FB ID?

Accepted Answer

There have been updates to the sample code that may have resolved this issue. Can you try downloading it again?

Add platforms information in Package.swift under Packages/RealityKitContent folder may help.

let package = Package(
    name: "RealityKitContent",
    platforms: [
        .visionOS("2.0")
    ],
    products: [ ....
Creating tabletop games - Build Failure
 
 
Q