2

我正在使用monotouch 绑定项目来实现Urban Airship我的monotouch应用程序。

我已按照文档AirshipConfig.plist中的说明在我的项目中添加了一个 但是,当我运行我的应用程序时,出现错误:

 The AirshipConfig.plist file is missing and no application credentials were specified at runtime.

我注意到AirshipConfig.plist由 monotouch 生成的文件在XML其中,文档将其描述为

{
/*NOTE: DO NOT USE THE MASTER SECRET*/
"APP_STORE_OR_AD_HOC_BUILD" = NO; /*set to YES for production builds*/
"DEVELOPMENT_APP_KEY" = "Your development app key";
"DEVELOPMENT_APP_SECRET" = "Your development app secret";
"PRODUCTION_APP_KEY" = "Your production app key";
"PRODUCTION_APP_SECRET" = "Your production app secret";
}

我在这里错过了什么吗?我需要做什么才能让我的应用程序找到该文件?

4

1 回答 1

3

这个问题启发了我。我需要将构建操作Xamarin Studio设置为和Content复制到输出目录Always copy将文件复制到设备。

于 2013-06-07T23:16:36.313 回答