586a32fa67
Change-Id: I8224ba28abec42cfaea26b147acbcd1a27e09a9b Signed-off-by: Alexey Polyudov <apolyudov@google.com>
13 lines
391 B
C++
13 lines
391 B
C++
#define LOG_TAG "android.hardware.gatekeeper@1.0-service"
|
|
|
|
#include <android/hardware/gatekeeper/1.0/IGatekeeper.h>
|
|
|
|
#include <hidl/LegacySupport.h>
|
|
|
|
// Generated HIDL files
|
|
using android::hardware::gatekeeper::V1_0::IGatekeeper;
|
|
using android::hardware::defaultPassthroughServiceImplementation;
|
|
|
|
int main() {
|
|
return defaultPassthroughServiceImplementation<IGatekeeper>("gatekeeper");
|
|
}
|