Skip to content

Instantly share code, notes, and snippets.

@arturgaleno
Created February 3, 2016 00:37
Show Gist options
  • Save arturgaleno/79499c6b9e4223625ba6 to your computer and use it in GitHub Desktop.
Save arturgaleno/79499c6b9e4223625ba6 to your computer and use it in GitHub Desktop.
public class AltBeaconApplication extends Application implements BeaconConsumer {
private BeaconManager beaconManager;
@Override
public void onCreate() {
super.onCreate();
beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.bind(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment