将本机库打包到APK中

时间:2011-10-21 18:32:35

标签: android eclipse ant eclipse-3.6 android-3.1-honeycomb

我如何从Eclipse执行此操作?我找不到任何办法。我尝试使用以下内容创建build.xml并将其添加为最终构建器:

<?xml version="1.0" encoding="UTF-8"?>
<project name="MobileRecovery" default="mergelibs">
<loadproperties srcFile="local.properties" />
<property file="ant.properties" />
<loadproperties srcFile="project.properties" />
<fail unless="sdk.dir" message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'" />
<!-- version-tag: custom -->
<import file="${sdk.dir}/tools/ant/build.xml" />
<target name="mergelibs">
    <apkbuilder outfolder="bin" verbose="true" apkfilepath="bin/MobileRecovery.apk">
        <file path="bin/classes.dex" />
        <nativefolder path="libs" />
    </apkbuilder>
</target>
</project>

但实现的只是输出apkbuilder doesn't support the nested "file" element

在这一点上,我对我做错了的原因和方法不感兴趣,如果有人可以给我一个解决方案,我会弄清楚它背后的理论。

1 个答案:

答案 0 :(得分:6)

将您的本机库放在项目文件夹的\ libs \ armeabi目录中,Eclipse将把它放在包中。