From 6f0639b8e91a25aaaa474b822387d9b1581d9144 Mon Sep 17 00:00:00 2001 From: C R E S T <217463890+imCrest@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:04:36 +0530 Subject: [PATCH] Add terminateModuleProcess method to BridgeInterface --- .../aidl/me/eternal/purrfectsnap/bridge/BridgeInterface.aidl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/main/aidl/me/eternal/purrfectsnap/bridge/BridgeInterface.aidl b/common/src/main/aidl/me/eternal/purrfectsnap/bridge/BridgeInterface.aidl index f86ac18e..fbfee88e 100644 --- a/common/src/main/aidl/me/eternal/purrfectsnap/bridge/BridgeInterface.aidl +++ b/common/src/main/aidl/me/eternal/purrfectsnap/bridge/BridgeInterface.aidl @@ -107,5 +107,7 @@ interface BridgeInterface { @nullable String getDebugProp(String key, @nullable String defaultValue); + oneway void terminateModuleProcess(); + CallDownloadSession startCallDownload(long startTimestamp, String author); }