From: Alessandro Astone Date: Thu, 23 Jan 2025 19:06:06 +0000 (+0100) Subject: protocol: Correct gbinder protocol version for API 33 X-Git-Tag: 1.5.0~6 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/6a0d19097a662123fe5606af570267a5e8e5488b protocol: Correct gbinder protocol version for API 33 This is now working correctly with libgbinder 1.1.42 --- diff --git a/tools/helpers/protocol.py b/tools/helpers/protocol.py index 80a1834..285fa5f 100644 --- a/tools/helpers/protocol.py +++ b/tools/helpers/protocol.py @@ -22,9 +22,12 @@ def set_aidl_version(args): elif android_api < 31: binder_protocol = "aidl3" sm_protocol = "aidl3" + elif android_api < 33: + binder_protocol = "aidl4" + sm_protocol = "aidl3" else: binder_protocol = "aidl3" - sm_protocol = "aidl4" + sm_protocol = "aidl3" cfg["waydroid"]["binder_protocol"] = binder_protocol cfg["waydroid"]["service_manager_protocol"] = sm_protocol