2

Hi I followed android documentation to create a library. But my problem is whenever I run the project means it is creating .aar file. I google it and found How to convert AAR to JAR this. I'm using iZip Unarchiver. But it is not extracting the .aar file. But they accepted that answer. Can any one know how to extract .jar from .aar. Thank you.

Community
  • 1
  • 1
e.k
  • 1,333
  • 1
  • 17
  • 36

1 Answers1

5

You can directly generate jar file using android studio. Here is a good tutorial for this.

Developer
  • 183
  • 8
  • 5
    Thank you. I gives me the idea. No need to extract jar. We have it in build->intermediates->bundles->release->classes.jar. We can rename and use it. – e.k Sep 22 '16 at 05:57