Thank you for your answer.
Just out of curiosity: Apple refuses to revoke old certificates. Can you maybe tell me why? I am absolutely sure that the first two certificates that I had created are not being used.
I can absolutely understand that certificates are not something that are handed out without any hesitation (or maybe not at all), but in my case a simple workaround would be to simply revoke one or two certificates so I can create a new one.
Regards,
Sascha
Post
Replies
Boosts
Views
Activity
I am pretty much using the same code as above, but I am trying to update my widget once every 3 seconds. But there seems to be minimum period of at least 5 minutes? The simulator always shows that the next refresh is in 5 minutes.
This is my code:
func getTimeline(in context: Context, completion: @escaping (Timeline<WidgetModel>) -> Void)
{
let controller = BatteryController()
controller.refresh()
let nextRefresh = Calendar.current.date(byAdding: .second, value: 3, to: Date.current)!
		let model = WidgetModel(date: nextRefresh, batteries: controller.batteries)
		let timeline = Timeline(entries: [model], policy: .atEnd)
		completion(timeline)
}
Is this true that the minimum refresh interval is 5 minutes?
I have the exact same problem.
On the Watch side, everything seems to work just fine and
session( session: WCSession, didFinish fileTransfer: WCSessionFileTransfer, error: Error?)
will be called (with no error).
But on the iPhone side
session( session: WCSession, didReceive file: WCSessionFile)
just won't be called.
After five rejected builds, I deleted everything. I created new provisioning profiles etc, cleared all caches and rebuilt the app.It looks like App Store Connect is happy now.
Same problem here, really frustrating because my update has some fixes for potentially crtiical bugs. I did not change anything in regards to signing or the profiles.I also tried (after it has been rejected for the first time) to create new profiles. Unfortunately it did not solve the issue.Yesterday my app passed the initial check and I could select the build. But after submitting it for review, it was rejected manually for the same reason.