Is it possible to change date/time on real device?

Hi everyone!
I using Appium 2, Java on MobileTesting Android/iOS apps.

I’ve found this link

But this didn’t help for me, because of error:
[HTTP] {“script”:“browserstack_executor: {“action”:“updateAndroidDeviceSettings”,“arguments”: {“customDate” : “2023-04-28”,“customTime” : “15:00”}}”,“args”:[]}
[debug] [AndroidUiautomator2Driver@119d (9231063b)] Calling AppiumDriver.execute() with args: [“browserstack_executor: {“action”:“updateAndroidDeviceSettings”,“arguments”: {“customDate” : “2023-04-28”,“customTime” : “15:00”}}”,[],“9231063b-ca53-4991-b4cd-9a1b61142240”]
[debug] [AndroidUiautomator2Driver@119d (9231063b)] Encountered internal error running command: NotImplementedError: Method is not implemented
[debug] [AndroidUiautomator2Driver@119d (9231063b)] at AndroidUiautomator2Driver.execute (/Users/admin/.appium/node_modules/appium-uiautomator2-driver/node_modules/appium-android-driver/lib/commands/execute.js:13:11)
[debug] [AndroidUiautomator2Driver@119d (9231063b)] at commandExecutor (/usr/local/lib/node_modules/appium/node_modules/@appium/base-driver/lib/basedriver/driver.js:122:18)

Does it mean the method is realy not implemented? Or I made a mistake?
My method is following:
@Override
public Page setDeviceCustomTime(String date, String time) {
JavascriptExecutor jse = getDriver();
jse.executeScript("browserstack_executor: {“action”:“updateAndroidDeviceSettings”,“arguments”: " +
“{“customDate” : “” + date + “”,” +
““customTime” : “” + time + “”}}”);
return this;
}