0

I work in windows 8. To compile just create a file and load it into Adobe PhoneGap Build. How to make an application to compile to a plugin Crosswalk?

The link https://build.phonegap.com/plugins/3347 they say that you just need to add a line in the config:

<gap:plugin name="org.crosswalk.engine" version="1.3.0" />

But it does not give any result. The application is compiled as before, without Crosswalk. On the tab, with the list of plug-ins, is still empty enter link view screenshot

I would be very grateful for any help

jeka5555
  • 189
  • 1
  • 15
  • Did you tried to add the plugin via CLI `cordova plugin add http://github.com/phonegap-build/cordova-plugin-crosswalk-webview.git` ? – mrak Jun 22 '15 at 23:38

2 Answers2

0

For Phonegap Build, try these two lines in your config.xml

<preference name='phonegap-version' value='cli-5.1.1' />
<gap:plugin name='org.crosswalk.engine' version='1.3.0' source='pgb' />

Source: http://phonegap.com/blog/2015/06/16/phonegap-updated-on-build/

0

You can use this plugin

<gap:plugin name="cordova-plugin-crosswalk-webview-pgb-adapt" source="npm" version="1.4.0-dev-5"/> 

instead of

<gap:plugin name="org.crosswalk.engine" version="1.3.0" />
Tunaki
  • 132,869
  • 46
  • 340
  • 423
Albert
  • 316
  • 3
  • 15