在Android中将AAR转换为JAR

时间:2015-07-13 14:14:04

标签: android jar aar

我在Eclipse中设计了一个android项目,但它需要一个AAR格式的库文件。我试图通过以下提供的步骤将AAR转换为JAR

Extract the AAR file using standard zip extract
Find the classes.jar file in the extracted files
Rename it to your liking and use the wanted jar file in your project

但它没有用。还有其他方法可以进行这种转换或者有没有办法将aar文件作为库项目添加到Eclipse ADT

1 个答案:

答案 0 :(得分:3)

  

有没有办法将aar文件作为库项目添加到Eclipse ADT

不,除非您切换到使用Maven进行Eclipse构建。

  

有没有其他方法可以进行此转换

您必须尝试将AAR转换为或多或少的常规Android库项目。 This Stack Overflow answer提供了一个食谱,this blog post of mine提供了有关该过程的更多信息。

然而,将Eclipse与ADT插件一起使用不再是一个好主意,因为官方对此的支持将在今年年底结束。