I'm working on implementing push notifications in my Phonegap
iOS application, and a few things are a bit confusing.
First, i'm following this tutorial here: http://devgirl.org/2012/10/19/tutorial-apple-push-notifications-with-phonegap-part-1/
Her tutorials tend to be straightforward, but in one step, she mentions looking under the resources folder and accessing the "Cordova.plist
" file, adding something under the Plugin Key.
As I am unable to do this step, the next step (involving modification of the AppDelegate.m
file) produces multiple errors that I feel might be connected to this. I understand from reading the comments on her tutorial and doing some research that after version 2.5 or so of Cordova
, there is no longer a Cordova.plist
file, and it instead has been converted to the config.xml
file only.
My config.xml file has this feature added:
<feature name="PushPlugin">
<param name="ios-package" value="PushPlugin" />
</feature>
Is there some other place that I might be able to add the plugin key and value since I don't have a Cordova.plist file? I'm pretty new to Xcode and Objective-C, so any suggestions or explanations are greatly appreciated. Thank you!