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.
Post
Replies
Boosts
Views
Activity
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))
}
}
}
Same here. Our update has been released too, and still trying to find the option to enable this.
✅ Outage is now resolved — https://developer.apple.com/system-status/
✅ Outage is now resolved — https://developer.apple.com/system-status/
Same issue. Any ideas?
8 months later and still getting the same error. Any luck?
+1
@fredlamsf same question here. Have you had an answer?
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.
Not getting any errors, but 'Archive' action either never completes or stuck "pending". Anyone else?
@uetyo You're not alone :) I had this problem since yesterday
https://developer.apple.com/forums/thread/760443?answerId=797130022#797130022
This may sound obvious, but have you ensured your IAPs are approved and 'available for sale'?
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
It looks like you're mixing up the App Store Server API with the /verifyReceipt endpoint (which is now also deprecated as of June 2024).
The URL should be: https://sandbox.itunes.apple.com/verifyReceipt
For subscriptions, the request body also requires a password which is your app's shared secret (you can obtain this from App Store Connect)
There is no submit button for External Testing. Once you add a build to the external group, it will be submitted.
Is your build showing as 'Waiting For Review'?
Make sure to have also filled out the Test Information