Back to project page isidore.
The source code is released under:
GNU General Public License
If you think the Android project isidore listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tbardici.isidore; //from ww w .java2s . com import android.os.AsyncTask; /** * * @author Teo * */ public class CallDOApiAsync extends AsyncTask<String, Void, String> { @Override protected String doInBackground(String... params) { return DOApi.callApiGetRaw(params[0]); } }