I'm not familiar with DSA however from a usual process — was the distribution method set correctly when uploading the new build? If the method was 'TestFlight Internal Only', it will be greyed out
https://developer.apple.com/documentation/xcode/distributing-your-app-for-beta-testing-and-releases#Select-a-method-for-distribution
Post
Replies
Boosts
Views
Activity
This may sound obvious, but have you ensured your IAPs are approved and 'available for sale'?
@uetyo You're not alone :) I had this problem since yesterday
https://developer.apple.com/forums/thread/760443?answerId=797130022#797130022
Not getting any errors, but 'Archive' action either never completes or stuck "pending". Anyone else?
Feels like we missed something obvious! — see Un-preserve prices for subscribers
https://developer.apple.com/help/app-store-connect/manage-subscriptions/manage-pricing-for-auto-renewable-subscriptions
Scroll down to the Subscription Pricing section and click View all Subscription Pricing.
Click Starting Price.
Click Edit Price.
App Store Connect displays the countries or regions where subscribers currently pay a lower price
Select the countries or regions where you want to increase the price. Click Next.
+1
@fredlamsf same question here. Have you had an answer?
8 months later and still getting the same error. Any luck?
Same issue. Any ideas?
✅ Outage is now resolved — https://developer.apple.com/system-status/
✅ Outage is now resolved — https://developer.apple.com/system-status/
Same here. Our update has been released too, and still trying to find the option to enable this.
Had the same issue. I noticed the end example actually differs from Part 1 of the code-along, specifically it conforms to TimelineProvider instead of IntentTimelineProvider, and subsequently removing the use of Intent.
You can refer to Part 2 oof the example code, or the below.
import WidgetKit
import SwiftUI
import Intents
struct Provider: TimelineProvider {
public typealias Entry = SimpleEntry
func snapshot(with context: Context, completion: @escaping (SimpleEntry) -> ()) {
let entry = SimpleEntry(date: Date(), character: .panda)
completion(entry)
}
func timeline(with context: Context, completion: @escaping (Timeline<SimpleEntry>) -> ()) {
let entries: [SimpleEntry] = [SimpleEntry(date: Date(), character: .panda)]
let timeline = Timeline(entries: entries, policy: .atEnd)
completion(timeline)
}
}
struct SimpleEntry: TimelineEntry {
public let date: Date
public let character: CharacterDetail
}
struct PlaceholderView : View {
var body: some View {
AvatarView(.panda)
}
}
struct EmojiRangerWidgetEntryView : View {
var entry: Provider.Entry
var body: some View {
AvatarView(entry.character)
}
}
@main
struct EmojiRangerWidget: Widget {
private let kind: String = "EmojiRangerWidget"
public var body: some WidgetConfiguration {
StaticConfiguration(kind: kind, provider: Provider(), placeholder: PlaceholderView()) { entry in
EmojiRangerWidgetEntryView(entry: entry)
}
.configurationDisplayName("Ranger Detail")
.description("See your favorite ranger.")
.supportedFamilies([.systemSmall])
}
}
struct EmojiRangerWidget_Previews: PreviewProvider {
static var previews: some View {
Group {
AvatarView(.panda)
.previewContext(WidgetPreviewContext(family: .systemSmall))
PlaceholderView()
.previewContext(WidgetPreviewContext(family: .systemSmall))
}
}
}
According to the Response from Frameworks Engineer - https://developer.apple.com/forums/thread/650564, it's not available in Beta 1 yet - we will have to wait.