whats new in 1.2?
- Added
writeUri
toNfcConnection
- 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>