Links
Badges




Maker History
Forums
[Swift 5] If snapchat isn't authenticating after redirect, try this!
I got Login Kit to open Snapchat and redirect back to my app, but the completion handler was never running. Turns out if you're on Swift 5 and your app uses SceneDelegate then you don't want to run `open url` from your AppDelegate. Instead, add this at the end of your SceneDelegate and you're good to go. func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { if let url = URLContexts.first?.url{ SCSDKLoginClient.application(UIApplication.shared, open: url, options: nil) } } Not sure how many people will find this useful, but it would have saved me a lot of time lol
My first Makers Festival
This is my first time participating in a Makers Festival and I'm really excited! I just submitted my app to Snapchat for review, then I'll submit to Apple for review and I should be done. It was really fun building an app that takes (almost) full advantage of SnapKit. I can't wait to share it with the world.
How long does it take for Snapkit app review?
I submitted my app on Saturday and it's still Awaiting Review. I'm starting to worry that if it's rejected I won't be able to get it out in time