1 #define LOG_TAG "[email protected]" 2 3 #include <android/hardware/nfc/1.0/INfc.h> 4 5 #include <hidl/LegacySupport.h> 6 7 // Generated HIDL files 8 using android::hardware::nfc::V1_0::INfc; 9 using android::hardware::defaultPassthroughServiceImplementation; 10 main()11int main() { 12 return defaultPassthroughServiceImplementation<INfc>(); 13 } 14