How can I add aar-module into the project in IDEA (without gradle, using ant)?
Asked
Active
Viewed 4,592 times
2 Answers
1
With Android Studio, that is pretty the same, the only solution I found was to extract the .aar content in a folder to use with the import module procedure. (File -> Project Structure... -> Modules -> + button -> Import module
)
If that doesn't work check if in the above extracted folder there is a .jar file and try to load it as external library (File -> Project Structure... -> Libraries
)

Joe Aspara
- 1,137
- 1
- 13
- 26
-1
in android studio go to file/new/new module
then
select
new module from existing aar package
-
4He is not asking about android studio – bish Jul 16 '15 at 08:12
-
2It will be similar in Intellij – Ahmed Jul 16 '15 at 08:33
-
1I had to unzip it before I could add it as a new module from sources. Is there a better way? – Dominique Oct 01 '15 at 10:10