Skip to content

Instantly share code, notes, and snippets.

@miguelcardo
Created December 22, 2014 16:31
Show Gist options
  • Save miguelcardo/daf554881051e3544dd2 to your computer and use it in GitHub Desktop.
Save miguelcardo/daf554881051e3544dd2 to your computer and use it in GitHub Desktop.
Instantiate the NFC Adapter
@AfterViews
void setupNFC(){
mAdapter = NfcAdapter.getDefaultAdapter(this);
if (!mAdapter.isEnabled()) {
Log.i(TAG, "NFC is not enabled. This is an error");
showTurnNFCDialog();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment