I have some trouble with dbus-send
when using a{sv}
Calling a method with in_signature='a{ss}'
seems to work using the
following command line:
dbus-send --dest="org.test.TestService"
/org/test/TestService/object org.test.TestService.method1 dict:string:string:"a","1","b","2"
Now I would like to have a dictionary with a variant type for values
(in_signature=a{sv}
),
How can I use it in dbus-send
?