Skip to content
Compare
Choose a tag to compare
@Rgghgh Rgghgh released this 10 Oct 20:24

whats new in 1.2?

  • Added writeUri to NfcConnection - used to write URI records to NFC tags.

Usage

class MyActivity extends NfcActivity {
    @Override
    public void onNfcStart(NfcConnection conn)
    {
        conn.writeUri("https://example.com"); // tag will open the browser at example.com
    }
}

Download

via Gradle:

compile 'com.rgghgh.nfcactivity:nfcactivity:1.2'

or Maven:

<dependency>
  <groupId>com.rgghgh.nfcactivity</groupId>
  <artifactId>nfcactivity</artifactId>
  <version>1.2</version>
  <type>pom</type>
</dependency>