Post

Replies

Boosts

Views

Activity

Reply to Debugging WidgetKit install error "Failed to get descriptors for extensionBundleID"
Not sure what the root cause of this error, but it happened for me when I replaced widget description string with a variable. After it went back to a string without a variable, it disappeared.    public var body: some WidgetConfiguration {         StaticConfiguration(kind: kind, provider: ListProvider()) { entry in             MyWidgetEntryView(entry: entry)         }         .configurationDisplayName(displayName)         .description("widget description here.") // An error occurred when it was .description(myDescriptionString)  This is really crazy and no idea why, but the workaround for me was to use a description string without variables....
Nov ’20