Desktop Build Error Failed to initialize ClientProjectBuilder

I suddenly started getting background construction errors, as shown below. I have no idea why it started all of a sudden. The code worked fine until the remote computer that I use to build Xcode rebooted. Any clue what might cause this?

ipad build failed: ClientProjectBuilder initialization failed android build error: ClientProjectBuilder initialization failed iphone build error: ClientProjectBuilder initialization failed

Relations Avi

+5
source share
1 answer

The solution to this error, as a rule, is to delete the wlBuildResources folder located in the TMPDIR OS.

See here: Worklight - FWLST1040E: android build failed: java.io.FileNotFoundException

  • Close eclipse
  • Find the temporary folder ( Windows , OS X )
  • Delete wlBuildResources folder
  • Open eclipse
  • Re-builds

It may also be useful to delete the native folder before closing Eclipse, however, note that if you wrote your own custom code, you must first create a backup so that it is not lost (!).

+16
source

Source: https://habr.com/ru/post/1213606/


All Articles