-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crosswalk compability #426
Comments
I can confirm this issue too. Any idea? |
same here! |
Same here. Temporarily use this. It works for me. http://plugins.cordova.io/#/package/jp.wizcorp.phonegap.plugin.localnotificationplugin |
I'm receiving same error in Apache Cordova Android 4.0.0
According to http://cordova.apache.org/announcements/2015/04/15/cordova-android-4.0.0.html, new Android uses first-class support for Crosswalk |
same here |
Not sure if the issue is about crosswalk or the new cordova release that is building with Gradle instead Ant |
local-notification plugin will support Cordova 4 and Crosswalk starting with v0.9 |
Can you say when? I'm not trying to rush you, I'm asking because I have a project that is using crosswalk and I'm wating this release |
I'm also running into this, any timeline on 0.9? |
I am also running into this same issue. When do you think 0.9 will be out please ? |
Same problem here, I would like to use this plugin with Crosswalk |
I have the same problem with cordova 5.0.0 |
1 similar comment
I have the same problem with cordova 5.0.0 |
+1 |
1 similar comment
+1 |
+1, same problema with cordova 5.0.0 and android platform version 4.0.0 |
+1 |
+1, i also have same issue with cordova 5.0.0 and cordova android platform 4.0.0 |
is it really necessary to say i have the same problem..? :p EDIT : This branch worked for me :) |
+1 Crosswalk on Cordova@5.0 |
+1 |
2 similar comments
+1 |
+1 |
Having the same issue without crosswalk |
Why this issue was closed? |
I am having similar issue with phonegap 4. |
@danda1man thanks! I'll use the fix then. Big thanks to @canda for the code. |
Shouldn't be created a pull request to fix this, and create a new tag in the repository to be used with cordova 5? |
Thank you @canda! for the code snipped. It all works now. This Should really just be updated in a PR |
not working i have a error cannot resolve method in this line webView.evaluateJavascript(js, null) |
+1 |
3 similar comments
+1 |
+1 |
+1 |
@canda fix works :) |
+1 |
3 similar comments
+1 |
+1 |
+1 |
|
+1 |
1 similar comment
+1 |
Hi had a compliation error with @canda`s fix due to the method sendJavascript expecting only one argument and not the 2nd null parameter that was still left there. |
@canda's solution +1 |
Worked for me: https://github.com/sebasi/cordova-plugin-local-notifications |
@canda thank you so much your solution worked for me :) |
+1 |
how to end schedule notification after particular time(2 hours)?? |
+1 |
1 similar comment
+1 |
Call native app from a web application and then get this error while tabbing back .... |
@darchanjo I am not surprised that sebasis's plugin compiles, since the relevant lines are just commented out: https://github.com/sebasi/cordova-plugin-local-notifications/blob/master/src/android/LocalNotification.java#L552 |
With crosswalk it doesn't compile if localnotification plugin is used.
I can get rid of compilation errors by removing the
sendJavascript
function inLocalNotification.java:463
and replacing the 2 calls to it (
:419
&:454
) withwebView.sendJavascript(js);
Then it will compile.. Then when calling cancelAll() or scheduledIds() (And maybe others) the app crashes and output is:
[ERROR:runtime_javascript_dialog_manager.cc(69)] Not implemented reached in virtual void xwalk::RuntimeJavaScriptDialogManager::WebContentsDestroyed(content::WebContents*)
Ideas?
The text was updated successfully, but these errors were encountered: