繁体   English   中英

在eclipse中为android项目创建jar

[英]Create jar for android project in eclipse

大家好我怎样才能创建使用eclipse在android中创建的项目的jar文件。 我已经用这种方式完成了项目 - >右键单击 - >导出 - >选择构建器 - > antbuilder - >确定然后在此过程之后将创建build.xml 在bulid.xml上,我将创建新的构建器。

  • 右键单击项目 - >属性 - >选择新建 - >给出build.xml和项目路径,然后按“确定”,将创建新的构建器。
  • 现在从项目属性中选择该构建器,然后按确定。
  • 现在构建您的项目,您的jar将在bin文件夹中创建。

我已经按照上面的过程但在bin文件夹中找不到我的jar。 我可以看到我的build.xml已创建,所有进程都顺利但仍未创建jar。 谁能告诉我怎么能这样做?

我的build.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
              Any modifications will be overwritten.
              To include a user specific buildfile here, simply create one in the same
              directory with the processing instruction <?eclipse.ant.import?>
              as the first entry and export the buildfile again. -->
<project basedir="." default="build" name="testtttttttttt">
    <property environment="env"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="target" value="1.6"/>
    <property name="source" value="1.6"/>
    <path id="Android 2.2.libraryclasspath">
        <pathelement location="C:/Program Files (x86)/Android/android-sdk/platforms/android-8/android.jar"/>
    </path>
    <path id="com.android.ide.eclipse.adt.LIBRARIES.libraryclasspath"/>
    <path id="testtttttttttt.classpath">
        <pathelement location="bin/classes"/>
        <path refid="Android 2.2.libraryclasspath"/>
        <path refid="com.android.ide.eclipse.adt.LIBRARIES.libraryclasspath"/>
    </path>
    <target name="init">
        <mkdir dir="bin/classes"/>
        <copy includeemptydirs="false" todir="bin/classes">
            <fileset dir="src">
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
        <copy includeemptydirs="false" todir="bin/classes">
            <fileset dir="gen">
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
    </target>
    <target name="clean">
        <delete dir="bin/classes"/>
    </target>
    <target depends="clean" name="cleanall"/>
    <target depends="build-subprojects,build-project" name="build"/>
    <target name="build-subprojects"/>
    <target depends="init" name="build-project">
        <echo message="${ant.project.name}: ${ant.file}"/>
        <javac debug="true" debuglevel="${debuglevel}" destdir="bin/classes" source="${source}" target="${target}">
            <src path="src"/>
            <classpath refid="testtttttttttt.classpath"/>
        </javac>
        <javac debug="true" debuglevel="${debuglevel}" destdir="bin/classes" source="${source}" target="${target}">
            <src path="gen"/>
            <classpath refid="testtttttttttt.classpath"/>
        </javac>
    </target>
    <target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
    <target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
        <copy todir="${ant.library.dir}">
            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
        </copy>
        <unzip dest="${ant.library.dir}">
            <patternset includes="jdtCompilerAdapter.jar"/>
            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
        </unzip>
    </target>
    <target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
        <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
        <antcall target="build"/>
    </target>
</project>

在Eclipse中,选择项目,右键单击项目,选择Export,从中选择Jar。 然后按照简单向导将目标放在要保存jar的位置,然后完成。 你可以在那里找到你的罐子。 在此输入图像描述

步骤1.按照此处的说明创建Android库项目。

步骤2.现在,您需要将步骤1中创建的Android库项目的引用提供给客户端应用程序。 有两种方法可以做到这一点。

•通过客户端应用程序属性提供Android库项目本身的参考 - >在左窗格中选择“Android” - >在Libraty部分,添加Android Libraty项目(这在上面步骤1中给出的链接中进行了解释)

•给出Android库项目的.jar文件的引用(来自Android库项目的位置 - > bin - > .jar文件)。 客户端应用程序 - >属性 - >单击文件窗格中的“Java构建路径” - >转到“库”选项卡 - >单击“添加外部JAR”按钮并选择.jar文件 - >转到“订购和导出”选项卡,选择添加的.jar文件引用并将其移至顶部。

希望这个能对您有所帮助

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM