Urban Airship Crashes in 2.0

陌路散爱 提交于 2019-12-12 01:24:24

问题


I keep getting this error

-----l- networkStatusForFlags
2013-09-05 12:35:58.196 Guess The Distance[9730:c07] [D] +[UAirship executeUnsafeTakeOff:] [Line 181] Deleting the keychain credentials
2013-09-05 12:35:58:281 Guess The Distance[9730:16387] TestFlight: Started Session
2013-09-05 12:35:58.846 Guess The Distance[9730:c07] [D] +[UAirship executeUnsafeTakeOff:] [Line 184] Deleting the UA device ID
2013-09-05 12:35:59.144 Guess The Distance[9730:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** setObjectForKey: object cannot be nil (key: gena)'

This is my code:

//Add onto main thread queue to excute asyncrously and to prevent Urban Airship Crashing
dispatch_async(dispatch_get_main_queue(), ^{
    //Load Urban Airship
    DLog(@"Loading Urban Airship...");

    // Disable Push
    [[UAPush shared] setPushEnabled:NO];

    // Populate AirshipConfig.plist with your app's info from https://go.urbanairship.com
    // or set runtime properties here.
    UAConfig *config = [UAConfig defaultConfig];

    config.developmentAppKey = UADevelopmentKey;
    config.developmentAppSecret = UADevelopmentSecret;
    config.productionAppKey = UAProductionKey;
    config.productionAppSecret = UAProductionSecret;
    config.detectProvisioningMode = YES;

    #ifdef DEBUG
    config.clearKeychain = YES;
    #endif

    // Call takeOff (which creates the UAirship singleton)
    [UAirship takeOff:config];

    DLog(@"Finished Loading Urban Airship");
});

回答1:


This could happen if you had any of the urban airship code running before a call to

    [UAirship takeOff:config];        

I placed my code after this statement and the crash went away.



来源:https://stackoverflow.com/questions/18635439/urban-airship-crashes-in-2-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!