Back to project page mobile-connector-sdk-android.
The source code is released under:
Apache License
If you think the Android project mobile-connector-sdk-android 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.silverpop.engage.location.receiver; //from w ww . j a v a2s . c o m import android.content.Context; import android.content.Intent; /** * Created by jeremydyer on 6/2/14. */ public interface EngageLocationReceiver { /** * Invoked when a location update BroadcastMessage is received. * @param context * @param intent */ public void onReceive(Context context, Intent intent); }