I am trying to use crosswalk runtime libraries with a cordova project and I am following all the steps given in the crosswalk documentation for migrating an application to crosswalk, but when I launch ADT and import the application and build it using the crosswalk libraries, I get an error in loadUrl(launchUrl); line of the java file(error: unable to resolve launchUrl as a variable). the comment above it says it is set from the config.xml file line (
Here is code with error:
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Set by in config.xml loadUrl(launchUrl); }
config.xml
and it is set at time of build. You can replace that with a hardcoded path or possibly something from crosswalk (not familiar with crosswalk) – Dawson Loudon