Post

Replies

Boosts

Views

Activity

Reply to How to use Swift Package Manager in Playgrounds?
I found out that as of Xcode 12.2 SwiftPM do not work reliably with playground. Currently, I can't make it work. I use 2 slightly different ways to marry a package with playgrounds: by connecting them through a workspace and through a project. It worked once, and to make it work I had to restart Xcode. But since I decided to replace the package, I was unable to make it work ever since. At this point I'm not sure if I'm doing something wrong or is it an Xcode bug. I've decided to stop trying and give up on playgrounds until SwiftPM support will become dead simple. Too many hours wasted. Build active scheme is turned on.
Dec ’20
Reply to Cannot Renew Apple Developer Membership
Have the same problem. My account is due to expire, and my 2 payment attempts were cancelled without an attempt to charge the card. I know from different social media threads that many other Russian developers and developers from other countries suffer from the exact same issue and only support could help them by manually charging the card. What make it worse for me is that the support leaves my requests unanswered. I have case numbers but they are useless, because there's no way for me to contact the support. (There's no phone call option on the dev support site). This really is bad.
Jul ’20
Reply to Neither getStateOfSafariExtension nor getStateOfContentBlocker work
Thank you for reaching out.I found the issue, and it had nothing to with Safari. The problem was me, misusing Combine: I wrapped calls to SFSafariExtensionManager.getStateOfSafariExtension and SFContentBlockerManager.getStateOfContentBlocker in Future<> and didn't keep AnyCancellable which was produced as the result. Thus, the result of the operation never made it to the state.Curiously, I remember the same code working before. Maybe during Beta times, there might have been a bug when a Combine chain wasn't disposed immediately. So I started looking into it thinking nothing is wrong with my code 🙂 Everything is fixed now.Thank you.
Mar ’20