Inject component into Cloneable SDK
Now that you have a built component, inject it into the SDK to make it available to your applications
Component Registry
Get your ComponentID
"736a9441-ea01-4e91-b2da-b84600774705"Non-UI Components
Example
// Define the Component that we want to add
let component = CloneableComponent(
id: "af91b5a3-9004-405a-afea-ae7bb5504731",
type: ComponentType.processing,
runtimes: [.ios], // set to .ios for your ios app
processingType: AIObjectDetection.self)
Components.addComponent(component: component)UI Components
OverlayHeader
Example
Last updated

