iOSアプリケーションに PushPlugin https://github.com/phonegap-build/PushPluginと Cordova 2.5 を使用しています。
Plugins フォルダーには、次のファイルがあります。
- Appdelegate+notification.h
- Appdelegate+notification.m
- PushPlugin.h
- PushPlugin.m
config.xml には、次のようなプラグインを含めました。
<plugin name="PushPlugin" value="PushPlugin" />
また、www フォルダーに PushNotification.js があり、それを index.html に含めました。
アプリケーションを実行し、push.js ファイルの行を実行すると:
pushNotification.register(this.tokenHandler,this.errorHandler, {"badge":"true","sound":"true","alert":"true","ecb":app.onNotificationAPN"});
次に、次のエラーが表示されます。
Error: Plugin 'PushPlugin' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml
PushPlugin は Cordova 2.5 と互換性がありますか?