神秘的 TwitterKit 崩溃
Mysterious TwitterKit crash
我在通过 Fabric 使用 TwitterKit
时看到了一个相当神秘的崩溃。
我的应用程序在这一行崩溃:
Fabric.with([Crashlytics.self, Twitter.self])
说:
[Fabric] Please upgrade to the latest version of "Twitter"
[Crashlytics] Version 3.8.4 (121)
Calling Twitter.start is not supported.
我按照文档的指示集成了 TwitterKit,向我的 Info.plist 添加了密钥和 url 方案,但我不明白为什么 Twitter 突然崩溃了。
带有 TwitterKit 3+ 的新工作版本
Fabric.with([Crashlytics.self])
Twitter.sharedInstance().start(withConsumerKey: "key", consumerSecret: "secret")
新建 Pod 文件
pod 'Fabric'
pod 'Crashlytics'
pod 'TwitterKit'
旧版本:
Fabric.with([Crashlytics.self, Twitter.self])
我在通过 Fabric 使用 TwitterKit
时看到了一个相当神秘的崩溃。
我的应用程序在这一行崩溃:
Fabric.with([Crashlytics.self, Twitter.self])
说:
[Fabric] Please upgrade to the latest version of "Twitter"
[Crashlytics] Version 3.8.4 (121)
Calling Twitter.start is not supported.
我按照文档的指示集成了 TwitterKit,向我的 Info.plist 添加了密钥和 url 方案,但我不明白为什么 Twitter 突然崩溃了。
带有 TwitterKit 3+ 的新工作版本
Fabric.with([Crashlytics.self])
Twitter.sharedInstance().start(withConsumerKey: "key", consumerSecret: "secret")
新建 Pod 文件
pod 'Fabric'
pod 'Crashlytics'
pod 'TwitterKit'
旧版本:
Fabric.with([Crashlytics.self, Twitter.self])