0
I’m having difficulty importing the library Droidsoapclient in my application, I use Android Studio to develop and I’m inserting this library in the folder Main, but it seems that the import is not lozalicando the file, or most likely I’m missing somewhere.
What should I do to properly import this library? https://code.google.com/p/droidsoapclient/
Could post your
gradle.build
?– Wakim
Regarding the location, can not put
jar
in the briefcasesrc
, is in the folderlibs
. And erase all thecompile file
, tocompile fileTree(include: ['*.jar'], dir: 'libs')
you’ll get thejar
ofdroidsoapclient
and add to apk.– Wakim
I added droidsoapclient to the libs folder, added it to the blibioteca and fixed Gradle.build to
dependencies {
 compile fileTree(include: ['*.jar'], dir: 'libs')
}
, Now how should I do the import command?– Rafael Alexandre
Just follow the site tutorial by using the
SoapClient
.– Wakim