Back to project page Weather-app.
The source code is released under:
Apache License
If you think the Android project Weather-app 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 app.sunshine.juanjo.network; /*w ww . j av a2 s . co m*/ import android.os.AsyncTask; import java.io.IOException; /** * Created by juanjo on 02/09/14. */ public class SendIdGCM extends AsyncTask<String, Void, Void> { @Override protected Void doInBackground(String... params) { String url = params[0]; try { new APIHTTP().run(url); } catch (IOException e) { e.printStackTrace(); } return null; } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); System.out.println("=> finished send ID"); } }