我正在使用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";
}
我在这里错过了什么吗?我需要做什么才能让我的应用程序找到该文件?