In this blog,
We have shown you how to add manually the external aar file in your android application.
Step 1: Put your aar file in the libs folder. And let’s take the file name is webkul.aar as an example.
Step 2: Put the following code in your Project level build.gradle file,
12345678 allprojects {repositories {jcenter()flatDir {dirs 'libs'}}}
and in the app level module write the below code,
123 dependencies {compile(name:'webkul', ext:'aar')}
Step 3: Then Click sync project with Gradle files.
If everything is working fine, then you will see library entry is made in build ->intermediates -> exploded-aar.
Or you can also follow these following steps,
Thanks for reading this blog. Stay updated.