protocol: Correct gbinder protocol version for API 33

This is now working correctly with libgbinder 1.1.42
This commit is contained in:
Alessandro Astone
2025-01-23 20:06:06 +01:00
parent 023c4e31e0
commit 6a0d19097a

View File

@@ -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