11

こんにちは、Eclipse を使用して Android で作成されたプロジェクトの jar ファイルを作成するにはどうすればよいですか。私はこの方法でプロジェクトを実行しました - >右クリック - >エクスポート - >ビルダーを選択 - > antbuilder - > OK、このプロセスの後、build.xmlが作成されます。bulid.xml で、新しいビルダーを作成します。

  • プロジェクトを右クリック -> プロパティ -> 新規を選択 -> build.xml とプロジェクト パスを指定して [OK] を押すと、新しいビルダーが作成されます。
  • プロジェクトのプロパティからそのビルダーを選択し、[OK] を押します。
  • プロジェクトをビルドすると、jar が bin フォルダーに作成されます。

上記のプロセスに従いましたが、jar が bin フォルダーに見つかりません。私の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>
4

2 に答える 2

26

Eclipse でプロジェクトを選択し、プロジェクトを右クリックして [エクスポート] を選択し、その中から [Jar] を選択します。次に、簡単なウィザードに従って、jar を保存する宛先を指定して終了します。そこにあなたの瓶を見つけることができます。 ここに画像の説明を入力

于 2012-07-02T07:04:48.440 に答える
1

ステップ 1.ここで説明されているように、Android ライブラリ プロジェクトを作成します。

ステップ 2. ステップ 1 で作成した Android ライブラリ プロジェクトの参照をクライアント アプリケーションに渡す必要があります。これには 2 つの方法があります。

• クライアント アプリ プロパティで Android ライブラリ プロジェクト自体の参照を指定 -> 左ペインで [Android] を選択 -> Libraty セクションで、Android Libraty プロジェクトを追加 (これは、上記の手順 1 で指定されたリンクで説明されています)

・Androidライブラリプロジェクトの.jarファイルの参照を与える(Androidライブラリプロジェクトの場所→bin→.jarファイルから)。クライアント アプリケーション -> プロパティ -> リーフ ペインで [Java ビルド パス] をクリックします -> [ライブラリ] タブに移動します -> [外部 JAR の追加] ボタンをクリックし、.jar ファイルを選択します -> [注文とエクスポート] タブに移動し、追加された .jar ファイル参照を選択し、一番上に移動します。

これがあなたを助けることを願っています

于 2013-08-09T18:55:09.767 に答える