How to add a .jar file to an Android studio project (version 0.4.0)

How to add jar file to Android studio project. For example, I'm trying to add ksoap2-android-assembly-3.1.1-jar-with-dependencies.jar to the project. Do not see the option anywhere to add the jar file to the project in order to access the library functions inside it.

+4
source share
3 answers

Create a libs folder in your project and copy the jar into it. In the project view, right-click on the bank and select Add as Library .

+17
source

This is android libs >> Open Libraries settings >> add jar.

For more information check the link

Link

thanks

0
source

All Articles