1

我正在尝试开始使用人行横道,因此我查看了他们的文档并遵循了所有必要的步骤。但是当我尝试运行命令时:

python make_apk.py --package=org.crosswalkproject.example     --manifest=tasker/manifest.json

我收到一个错误,起初一切都很好,但随后出现了 BUILD ERROR:

Checking manifest file
Checking system requirements...ok

Starting application build (x86)
 * Checking keystore for signing
   No keystore provided for signing. Using xwalk's keystore for debugging.
   Please use a valid keystore when distributing to the app market.
 * Updating project with xwalk_core_library
 * Checking for external extensions
 * Copying native libraries for x86
 * Building Android apk package with Crosswalk embedded (x86)

BUILD FAILED
/home/user1/Documents/android-sdk-linux/tools/ant/build.xml:601: The following error occurred while executing this line:
/home/user1/Documents/android-sdk-linux/tools/ant/build.xml:653: The following error occurred while executing this line:
/home/user1/Documents/android-sdk-linux/tools/ant/build.xml:698: null returned: 127

Total time: 0 seconds
Command "/home/user1/Documents/ant/bin/ant release -f /tmp/Example-zZk3z9/build.xml -Dkey.store=/home/user1/Documents/crosswalk-10.39.235.15/xwalk-debug.keystore -Dkey.alias=xwalkdebugkey -Dkey.store.password=xwalkdebug -Dkey.alias.password=xwalkdebug" exited with non-zero exit code 1

我想这与别名代码有关,但我不确定。

PS 我的index.html 和 manifest.json就像教程中的一样。我跟着每一步。这是我正在关注的文档:https ://crosswalk-project.org/documentation/getting_started.html 有什么想法可以解决这个问题吗?

4

1 回答 1

1

我刚遇到同样的问题。

我做了一些研究,看起来这个错误可能有很多不同的原因。

就我而言,我必须安装“lib32stdc++6”

apt-get install lib32stdc++6

您可以通过使用了解有关您遇到的问题的更多信息

--verbose

当你运行 make_apk.py

对于其他人来说,是在构建 xmls 中混合了不同的目标版本导致了问题。

于 2015-03-27T09:29:00.580 回答