Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding AAR in IntelliJ IDEA without gradle

How can I add aar-module into the project in IDEA (without gradle, using ant)?

like image 402
user1468102 Avatar asked Nov 30 '25 03:11

user1468102


1 Answers

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)

like image 176
Joe Aspara Avatar answered Dec 02 '25 16:12

Joe Aspara