我正在尝试在centos服务器中构建离子项目。在centos服务器中构建离子时,我收到以下错误。
[root@localhost todo]# ionic build android
Native thread-sleep not available.
This will result in much slower performance, but it will still work.
You should re-install spawn-sync or upgrade to the lastest version of node if possible.
Check /usr/lib/node_modules/ionic/node_modules/ionic-app-lib/node_modules/cross-spawn/node_modules/spawn-sync/error.log for more details
Running command: /root/todo/hooks/after_prepare/010_add_platform_class.js /root/todo
add to body class: platform-android
Running command: /root/todo/platforms/android/cordova/build
[Error: Failed to find 'ANDROID_HOME' environment variable. Try setting setting it manually.
Failed to find 'android' command in your 'PATH'. Try update your 'PATH' to include path to valid SDK directory.]
ERROR building one of the platforms: Error: /root/todo/platforms/android/cordova/build: Command failed with exit code 2
You may not have the required environment or OS to build this project
Error: /root/todo/platforms/android/cordova/build: Command failed with exit code 2
[root@localhost todo]# npm -v
1.3.6
[root@localhost todo]# cordova -v
5.4.1
[root@localhost todo]# ionic -v
1.7.12
我已经成功安装了centos服务器的所有软件包。
[root@localhost todo]# uname -a
Linux localhost.localdomain 2.6.32-504.el6.i686 #1 SMP Wed Oct 15 03:02:07 UTC 2014 i686 i686 i386 GNU/Linux
我使用了以下步骤。
yum install nodejs
npm install -g cordova ionic
ionic start todo blank
cd todo && ls
ionic platform add android
ionic build android
(在centos linux服务器中获取错误)对于这些步骤,我已经粘贴了上述错误。
答案 0 :(得分:0)
您必须安装Android SDK并添加ANDROID_HOME
环境变量。
spring.io的步骤:
根据Android SDK的位置配置ANDROID_HOME
环境变量。另外,请考虑在您的路径中添加ANDROID_HOME/tools
和ANDROID_HOME/platform-tools
。
export ANDROID_HOME=/<installation location>/android-sdk-linux
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
Android SDK下载不包含特定的Android平台。要运行本指南中的代码,您需要下载并安装最新的SDK平台。您可以使用上一节中安装的Android SDK和AVD Manager来完成此操作。
打开 Android SDK Manager 窗口:
android
注意:如果此命令无法打开 Android SDK Manager ,则说明您的路径配置不正确。
选择工具复选框。
点击安装软件包... 按钮完成下载和安装。
注意强>: 您可能希望安装所有可用的更新,但请注意它需要更长时间,因为每个API级别都是大量下载。