I get an error when I try set a value for property with name >= 32 characters
adb shell setprop 01234567890123456789012345678901 VALUE
Error:
could not set property
This works fine
adb shell setprop 0123456789012345678901234567890 VALUE
adb shell getprop 0123456789012345678901234567890
VALUE
Is there any way to set properties with longer names?