4

I recently start using Intel XDK. I found that for each platform creation my code will go to Intel cloud center to perform the build. Its a feature mentioned at Product Brief Intel® XDK.

Can I build that locally? I mean can I build locally in my system itself using Intel XDK? If so, then how?

jww
  • 97,681
  • 90
  • 411
  • 885
Manu Mathew
  • 51
  • 1
  • 3

2 Answers2

1

are you afraid of intel knowing your code? in cordova\html5 app your code is available to anyone just get the apk from the store open with winrar and your code is there

if you want offline build there is no problem just read the cordova\phonegap docs step by step.

Amir Bar
  • 3,007
  • 2
  • 29
  • 47
1

As you, I needed to build locally my application, principally to debug once Intel XDK, at least in the version 1621, does not provide support to load third-party-plugins(eg: PhoneGap Push Plugin) on Intel App Preview debug mode. Another problem was generate an iPhone build for beta tests.

My solution was, as the others suggested, to create an similar cordova project and copy the main files from my Intel XDK Project, www folder to be more specific. Config files will be found in platforms folder once you build using cordova/phonegap.

It allowed me to build for android on my machine. Debug was easy using "Chrome Inspect" because cordova generates an debug-unaligned.apk. Allowed me to have access to the iOS build files, this is a good thing to do if you want to build using Xcode instead.

I Hope it help you.

André Duarte
  • 295
  • 1
  • 11