Hello Davide. On 30 May 2014 16:41, davide <[email protected]> wrote:
> I had another test run with cordova 3.3 and xwalk 5. but with the > version 5 of xwalk I am not able to complete the 2nd ant buid. See here for > the full commands: > > $ mkdir /tmp/xwalk/ > $ cd /tmp/xalk > > # install cordova 3.3 > > $ sudo npm install -g [email protected] > $ cordova --version > 3.3.1-0.4.2 > > $ cordova create hello com.hello.com > $ cd hello > $ cordova add platform android > $ cd android > $ rm CordovaLib/* -rfv > > $ pwd > /tmp/xwalk/hello/platforms/android > I think you're in the wrong directory. The instructions say: $ cd platforms/android/CordovaLib/ So you should start in the platforms/android/CordovaLib directory. Then do: $ android update project --subprojects --path . --target "android-19" Then: $ ant debug Then: $ cd .. (so you're in platforms/android/) Then: $ ant debug That's why Ant can't find the build file: it's in the android/ directory, and you've done "cd .." and are in the platforms/ directory above it. Elliot -- Elliot Smith Senior Software Engineer Intel Open Source Technology Centre
_______________________________________________ Crosswalk-help mailing list [email protected] https://lists.crosswalk-project.org/mailman/listinfo/crosswalk-help
