Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は最初のAndroidアプリを開発しており、Eclipseを使用していません。私はここの指示に従おうとしています。これはEclipseで開発するために書かれていますが、AntでEmacsを使用していbuild.xmlます。次のことをどのように行いますか。
build.xml
Eclipseで、.jarファイルをビルドパスに追加します。
アリとbuild.xml?
javacタスクのクラスパスに追加します。
javac
このようなものがある場合は、残りのjarファイルと同じフォルダーに追加するだけです
<path id="master-classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> </path> <javac destdir="build"> <src path="src"/> <classpath refid="master-classpath"/> </javac>