How to add external jar libraries to an android project from the command line

后端 未结 9 1629
猫巷女王i
猫巷女王i 2020-11-28 08:23

I\'m trying to build an Android project that has some dependencies. The jar files are in the lib/ directory. I can build the project by adding those jar file to my classpa

9条回答
  •  不知归路
    2020-11-28 09:08

    Jay K's answer was right at the time of writing, but now the SDK has changed, and here is the new way to do it:

    Add the following line to ant.properties:

    jar.libs.dir=lib
    

    Tested, works where external.libs.dir does not work.
    That changed in December 2010 and then again in October 2011.

提交回复
热议问题