System service method codes may vary by version of Android . Therefore, before calling the service method, look at the AOSP sources.
Below is a summary of NFC allow / block calls prior to Android 5.1.1. Also keep in mind that (in sources)
int FIRST_CALL_TRANSACTION = 0x00000001
i.e. equal to 1 .
Android 4.4 - Android 5.1.1
# Disable NFC service call nfc 5
Android 4.0.1 - Android 4.3.1
# Disable NFC service call nfc 4
Android 2.3.4 - Android 2.3.7
# Disable NFC service call nfc 18
Android 2.3.3 :
# Disable NFC service call nfc 20
Android 2.3.2 :
# Disable NFC service call nfc 13
To check the status of the NFC service, use the dumpsys command:
dumpsys nfc
Onik
source share