5

In the new Gradle build system, we can package Android projects in very convenient .AAR format.

Unfortunately the ADT Eclipse plugin, v22 , does not support this file format. Please can it do so.

TooCool
  • 10,598
  • 15
  • 60
  • 85

1 Answers1

2

I am currently renaming .aar file as .zip and then extracting it. After that I rename the classes.jar to jar file name I want. A bit tedious but this is how I am currently using .aars file in eclipse.

Pranjal Sahu
  • 1,469
  • 3
  • 18
  • 27
  • Hi, am also using like this.but, while using any Activity from JAR , its showing java.lang.NoClassDefFoundError: ActivityName.R$layout..also i included all extracted res,assets,mani files into library proj. – harikrishnan Feb 03 '16 at 10:56