- Right click on your project and select "Open Module Settings".
- Click the "+" button in the top left corner of window to add a new module.
- Select "Import .JAR or .AAR Package" and click the "Next" button.
- Find the AAR file using the ellipsis button "..." beside the "File name" field.
- Keep the app's module selected and click on the Dependencies pane to add the new module as a dependency.
- Use the "+" button of the dependencies screen and select "Module dependency".
- Select the module and click "OK".
EDIT: Module dependency in screenshot 6 has been removed in Android Studio 4.1. As an alternative add the module dependency to the build.gradle.
dependencies { implementation project(':your_module') } EDIT: The user interface and the work flow have been changed a lot in Android Studio 4.2. The process to add a dependency is very well explained in an official documentation now: Adding dependencies with the Project Structure Dialog






