Back to project page Geoloqi-Android-Geotracks.
The source code is released under:
GNU General Public License
If you think the Android project Geoloqi-Android-Geotracks 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.geoloqi.geotracks.receiver; // ww w .j a va2 s . co m import android.content.Context; import android.location.Location; import android.os.Bundle; import com.geoloqi.android.sdk.LQTracker.LQTrackerProfile; import com.geoloqi.android.sdk.receiver.LQBroadcastReceiver; /** * An implementation of the abstract receiver * {@link LQBroadcastReceiver}. Handle broadcast intents * from the Geoloqi SDK. * * @author Tristan Waddington */ public class LocationBroadcastReceiver extends LQBroadcastReceiver { private static final String TAG = "LocationBroadcastReceiver"; @Override public void onLocationChanged(Context context, Location location) { // Pass } @Override public void onLocationUploaded(Context context, int count) { // Pass } @Override public void onPushMessageReceived(Context context, Bundle data) { // Pass } @Override public void onTrackerProfileChanged(Context context, LQTrackerProfile oldProfile, LQTrackerProfile newProfile) { // Pass } }