Workaround suggestion for Appium 1.5.3 - api scrollTo not working

After Upgrading to Appium 1.5.3 ( from 1.4.16) , java-client 4.0.0

ScrollTo API has stopped working. I believe it is known issue.
Looking for best possible workaround/solution for this.

Thanks

Can you try this one?

TouchAction act = new TouchAction(mdriver);
act.press(mdriver.findElementByAccessibilityId(“id”)).moveTo(mdriver.findElementByAccessibilityId(“id”)).release().perform();