【问题标题】:App crash on using Fabric - Cannonball in Swift?在 Swift 中使用 Fabric - Cannonball 时应用程序崩溃?
【发布时间】:2015-09-21 04:00:10
【问题描述】:

运行 CannonBall 时出现此错误:app here

'[Fabric] Info.plist 键“Fabric”的值必须是 NSDictionary。'

Appdelegate.swift:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {        
    let welcome = "Welcome to Cannonball! Please onboard with the Fabric Mac app. Check the instructions in the README file."
    //assert(NSBundle.mainBundle().objectForInfoDictionaryKey("Fabric") != nil, welcome)

    Fabric.with([Crashlytics(), Twitter(), Digits(), MoPub()])//error here


    if Twitter.sharedInstance().session() == nil && Digits.sharedInstance().session() == nil {
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let signInViewController: AnyObject! = storyboard.instantiateViewControllerWithIdentifier("SignInViewController")
        window?.rootViewController = signInViewController as? UIViewController
    }

    return true
}

我得到的建议是“您的 info.plist 中缺少 Fabric APIKey”。 但我在 info.plist 中找不到 Fabric 密钥。

Info.plist:

【问题讨论】:

  • 是的,info.plist 中必须有一个带有 api 键的 Fabric 值
  • 好的。如何获取consumerKey和consumerSecret of Digits?
  • 你注册fabric了吗??/

标签: ios swift twitter-fabric twitter-digits


【解决方案1】:

将此代码添加到您的 .plist 文件中:

<key>Fabric</key>
<dict>
    <key>APIKey</key>
    <string>Your-key</string>
    <key>Kits</key>
    <array>
        <dict>
            <key>KitInfo</key>
            <dict/>
            <key>KitName</key>
            <string>Crashlytics</string>
        </dict>
        <dict>
            <key>KitInfo</key>
            <dict>
                <key>consumerKey</key>
                <string>Your-consumerKey</string>
                <key>consumerSecret</key>
                <string>Your-consumerSecret</string>
            </dict>
            <key>KitName</key>
            <string>Twitter</string>
        </dict>
        <dict>
            <key>KitInfo</key>
            <dict>
                <key>consumerKey</key>
                <string>Your-consumerKey</string>
                <key>consumerSecret</key>
                <string>Your-consumerSecret</string>
            </dict>
            <key>KitName</key>
            <string>Digits</string>
        </dict>
    </array>
</dict>

【讨论】:

    猜你喜欢
    • 2015-10-11
    • 2015-03-19
    • 2018-09-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多