/* * Copyright (C) 2026 oxmc / PawletOS * SPDX-License-Identifier: Apache-2.0 * * Entry point stock recovery_main.cpp dlsym()s out of librecovery_ui_ext.so * (see recovery_main.cpp's kDefaultLibRecoveryUIExt / dlopen/dlsym logic — * this file is what TARGET_RECOVERY_UI_LIB is set to build). */ #include "pawlet_recovery_ui.h" #include "recovery_ui/device.h" Device* make_device() { return new Device(new PawletTwrpUI()); }