jwagenleitner / groovy-wslite

Lightweight SOAP and REST webservice clients for Groovy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it planned to make it available for android development?

susannej opened this issue · comments

I'm currently trying to make friend with the android-development and while wslite is working greatly under the linux-shell I would like to know, if there are plans to make it available for android-development?

The reason for that is, that I got an exception under android:

AndroidException.txt

It works! 👍

Ok, the mentioned exception was my fault! (Don't execute "internet"-communication in the main-thread!)
But you might need the following in your build.gradle of your android-project (just for the records...):

    compile ('org.codehaus.groovy:groovy-json:2.4.3') {
        exclude group: 'org.codehaus.groovy'
    }

and / or:

    compile ('org.codehaus.groovy:groovy-xml:2.4.3') {
        exclude group: 'org.codehaus.groovy'
    }

in your dependencies group