我有一点问题。
问题:
我正在尝试在Jenkins上构建我的Android项目,现在我站在这个我无法解决的问题上。在建筑过程中,我收到此错误消息:
:Client:mergeDebugResources
/var/lib/jenkins/workspace/LMA-Client/Client/build/exploded-aar/com.google.android.gms/play-services/3.1.59/res/drawable-hdpi/common_signin_btn_text_focus_light.9.png:
Error: Cannot run program "/opt/android-sdk/build-tools/19.0.1/aapt": java.io.IOException: error=2, No such file or directory
:Client:mergeDebugResources FAILED
您可以想象这个aapt ...是的,还有png ...也是的,所以错误肯定在其他地方。
解决方案?
现在,我在1-2个小时的时间里搜索了google,在这个很棒的网站上浏览了一下,发现如果Jenkins在64位系统上运行,则需要安装ia32-libs。像那样:
sudo apt-get install ia32-libs
现在我尝试了,但无法安装:
The following packages have unmet dependencies:
ia32-libs : Depends: ia32-libs-multiarch
所以我尝试安装“ ia32-libs-multiarch”,但是再次:
The following packages have unmet dependencies:
ia32-libs-multiarch:i386 : Depends: libgphoto2-2:i386 but it is not going to be installed
Depends: libsane:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
最后
,最后我站在这里问我:那真的是解决方案吗?我为什么要安装这个东西?如何?所以请帮助我,我想我离答案并不远。
1
错误的
—
sschuberth
@sschuberth不,但类似。该其他线程中的解决方案对我不起作用。这可能是重复的:stackoverflow.com/questions/18928164/…–
—
Neifen