I am trying to implement pushnotifications for phonegap using PushWoosh but I am actually not cleared with the documentation (Guide) , I am facing problem in the 4TH step unable to find the specified function in PushPlugin .....May I please know where to search for this function for modifications ?
If anyone has implemented PushNotification using pushwoosh please let me know in the comments below.
This guide is based on PushPlugin example:
https://github.com/phonegap-build/PushPlugin/tree/master/Example/www
In particular this file:
https://github.com/phonegap-build/PushPlugin/blob/master/Example/www/index.html
Additionaly I would recommend using Pushwoosh Phonegap (Build) Plugin rather than Generic PushPlugin as Pushwoosh plugin provides much more features and flexibility!
Related
So I am trying to update contacts upon change notification. I was unable to find any flutter plugins that did so(If you do know any plugins that does so please let me know!! ). I decided to implement the notifications and send a call to do a functionfrom native to flutter. How do you do that? I am really confused.
So, I found this really nice plugin recently. It was hidden when I was searching for it.
https://github.com/Ben-Baert/flutter_listentocontacts
Good Luck,
Ronny McNamara
EddyVerbruggen/Calendar-PhoneGap-Plugin will not support modify events in android is there any other way to do so, or any other plugin that can i use to update android native calendar events from my app
I am using Codrova ionic
Please help me regarding this
Thank u
I saw plugin BackgroundJS yesterday and searching for one working on android, but didn't find anything
Is there any for android ?
If answer is yes, then please give me a link.
Or if it isn't :
How can I call my android service with Javascript (in phonegap)
com.abc.def -> BackgroundService.java
I'm using phonegap for creating android apps. I created successfully a notification on the android's notification bar with the plugin localnotification here: https://github.com/phonegap/phonegap-plugins/tree/master/Android/LocalNotification
Now I want to create a alarm (a kind of seeting alarm in clock), I see some .java file in this plugin has the titles with [alarm...], I think I can do something with this plugin. But I cannot find the examples for this.
Please give me some examples for this kind.
Thanks guys.
After searching on google, I see that phonegap doesnot support for notification/alarm. And the plugin [localnotification] for android just supports for showing the notification on notification bar. That's it.
Maybe to show an alarm, we need to write an other plugin with some java codes, and using the tutorial how to create a plugin with phonegap at here: http://docs.phonegap.com/en/2.1.0/guide_plugin-development_android_index.md.html#Developing%20a%20Plugin%20on%20Android
Good evening,
I am currently developing an application for android using phonegap and sencha touch 1.1.
I am having trouble with the GoogleAnalyticsTracker plugin for Android. I followed all the instructions on github on how to import the necessery code for the plugin to work but I am having trouble with initialization.
In my plugins.xml I have added the following line:
< plugin name="Analytics" value="com.phonegap.plugins.analytics.GoogleAnalyticsTracker" />
As indicated in the readme.md file in github. I also added the GoogleAnalyticsTracker.java file inside com/phonegap/plugins/analytics and referenced the js file in my html... every thing seems to work fine except the part where I call the start method with my account id... The method returns the failure callback with error 'Class not found'. any ideas why phonegap cannot find the class specified in the xml?
if you need more info on this please do not hesitate to ask.
Thank you in advance!
PS. i am using phonegap 1.4.1
-L_Sonic
I took a look at the src and I see that the PhoneGap.exec calls in analytics.js does not match the plugin name. You have two ways to fix this.
In plugins.xml make the plugin line:
<plugin name="GoogleAnalyticsTracker" value="com.phonegap.plugins.analytics.GoogleAnalyticsTracker"/>
Or in analytics.js replace all instances of 'GoogleAnalyticsTracker' with 'Analytics'
This is a bug in the way the code is setup in github. You should message the author to get them to fix it.
Rather than using the PhoneGap plugin, I would recommend using the Google Analytics SDK for tracking usage of application developed using PhoneGap or any web based mobile app.
Ensure that you respect your users privacy and dont send any other data to Google Analytics.
Besides you should also adhere to Google Analytics privacy policy.
Heres how to do it.
http://www.the4thdimension.net/2011/11/using-google-analytics-with-html5-or.html