Back to project page groceryviewer.
The source code is released under:
GNU General Public License
If you think the Android project groceryviewer 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.github.knrajago.groceryviewer.threadedutils; //from w w w . j a v a 2s.c om import android.os.AsyncTask; public class GoogleAuthTokenRetriever extends AsyncTask<String, Void, String> { @Override protected String doInBackground(String... pParameters) { String accName = null; String scope = null; if (pParameters == null || pParameters.length != 2) { accName = pParameters[0]; scope = pParameters[1]; } return null; } }