Back to project page CloudyPhone.
The source code is released under:
MIT License
If you think the Android project CloudyPhone 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.cloudyphone.android.controller.receivers; //from ww w . j av a2s . c o m import org.json.JSONObject; import android.content.Context; import com.cloudyphone.android.controller.sync.SyncThread; public class SyncReceiver extends PushReceiver { @Override public void execute(Context context, JSONObject data) { try { new SyncThread(context).start(); } catch (Exception e) { // TODO notify user here, not logged in yet } } }