Issue
Try to import aar file into project but cannot find the option of "import .jar/aar package" inside the add new module
Solution
Copy your aar/jar file to module "libs" folder ( create "app\libs" folder if not exist ) and add this line to your module Build.gradle file:
implementation files('libs/your_lib_name.aar')
Answered By - Morteza.J
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.