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 中开发而编写的,尽管我将 Emacs 与 Ant 的build.xml. 您将如何执行以下操作:
build.xml
在 Eclipse 中,将 .jar 文件添加到构建路径。
与蚂蚁build.xml?
您想将它添加到您的javac任务的类路径中:
javac
如果你有这样的东西,那么你只需将它与其余的 jars 添加到同一个文件夹中
<path id="master-classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> </path> <javac destdir="build"> <src path="src"/> <classpath refid="master-classpath"/> </javac>