You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
337 B
13 lines
337 B
#define LOG_TAG "android.hardware.nfc@1.0-service" |
|
|
|
#include <android/hardware/nfc/1.0/INfc.h> |
|
|
|
#include <hidl/LegacySupport.h> |
|
|
|
// Generated HIDL files |
|
using android::hardware::nfc::V1_0::INfc; |
|
using android::hardware::defaultPassthroughServiceImplementation; |
|
|
|
int main() { |
|
return defaultPassthroughServiceImplementation<INfc>(); |
|
}
|
|
|