0

I would like to add apklibs file to the dependencies of my project. Is it possible?

I'm using IntelliJ without Maven.

Thank you

Esteam
  • 1,911
  • 1
  • 16
  • 24
  • 1
    If you are using Maven, it should work automatically, otherwise import it as a new library module and add this module to the dependencies of your app. – CrazyCoder Jun 11 '13 at 09:21
  • what do you suggest is creating a new library module and extracting the content of all the apklibs in it and then add this to my project dependencies? Am I right? – Esteam Jun 11 '13 at 09:29
  • 1
    You can import the module from the existing sources that are already extracted. – CrazyCoder Jun 11 '13 at 09:30

1 Answers1

1

Extract apklib into some directory and import a new module from the existing sources, this module should be Android library module that you can add to the dependencies of your app.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904