Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created July 12, 2016 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitherejoe/18af48ce568d23a8ad9759f84d838bdb to your computer and use it in GitHub Desktop.
Save hitherejoe/18af48ce568d23a8ad9759f84d838bdb to your computer and use it in GitHub Desktop.
@Override
protected void onStart() {
super.onStart();
setupFence();
registerReceiver(mFenceReceiver, new IntentFilter(FenceReceiver.FENCE_RECEIVER_ACTION));
}
@Override
protected void onStop() {
super.onStop();
unregisterFence();
unregisterReceiver(mFenceReceiver);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment