Post

Replies

Boosts

Views

Activity

Reply to I ran out of Developer ID Certificates - Second Developer Account?
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
Nov ’20
Reply to Widgets refreshing continuously, non-stop, not respecting timeline
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?
Aug ’20
Reply to ITMS-90034: Missing or invalid signature
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.
Jun ’20