When I call Twitter.sharedInstance().logIn(completion: TWTRLogInCompletion), my app immediately crashes.
I have:
- added the setup function to AppDelegate:
Twitter.sharedInstance().start(withConsumerKey:"hTpkPVU4pThkM0", consumerSecret:"ovEqziMzLpUOF163Qg2mj") (using my own key and secret)
- Configured my info.plist with all required keys
- Installed TwitterKit 3.0.3 via CocoaPods
Running app on a real device (iPhone 7, iOS 10.3.2)
Other SDK calls succeed (ex. Twitter.sharedInstance().sessionStore.session()?.userID)
I get no useful output in the console.
This is an app that was previously using Fabric, but I have removed Fabric from the app and am using the standalone TwitterKit now.